Git vs Mercurial Mercurial and Git both are two quite similar and most popular distributed version control systems. Their strengths and weaknesses…
git terminology
-
-
Git vs SVN Apache Subversion or SVN is one of the most popular centralized version control systems. Now, SVN’s popularity is on…
-
What is GitHub? GitHub is a Git repository hosting service. GitHub also facilitates with many of its features, such as access control…
-
Git Flow / Git Branching Model Git flow is the set of guidelines that developers can follow when using Git. We cannot…
-
Git Rm In Git, the term rm stands for remove. It is used to remove individual files or a collection of files.…
-
Git Fork A fork is a rough copy of a repository. Forking a repository allows you to freely test and debug with…
-
Git Squash In Git, the term squash is used to squash the previous commits into one. It is not a command; instead,…
-
Git Head The HEAD points out the last commit in the current checkout branch. It is like a pointer to any reference.…
-
Git Stash Sometimes you want to switch the branches, but you are working on an incomplete part of your current project. You…
-
Git Ignore In Git, the term “ignore” is used to specify intentionally untracked files that Git should ignore. It doesn’t affect the…