Git Flow / Git Branching Model Git flow is the set of guidelines that developers can follow when using Git. We cannot…
git vs svn
-
-
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…
-
Git Status The git status command is used to display the state of the repository and staging area. It allows us to…
-
Git Index The Git index is a staging area between the working directory and repository. It is used to build up a…
-
Git Tags Tags make a point as a specific point in Git history. Tags are used to mark a commit stage as…