Git Status The git status command is used to display the state of the repository and staging area. It allows us to…
git vs svn
-
-
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…
-
Git Add The git add command is used to add file contents to the Index (Staging Area).This command updates the current content…
-
Git Init The git init command is the first command that you will run on Git. The git init command is used…
-
Git Branch A branch is a version of the repository that diverges from the main working project. It is a feature available…
-
Git log The advantage of a version control system is that it records changes. These records allow us to retrieve the data…
-
Git Cheat Sheet 1. Git configuration Git config Get and set configuration variables that control all facets of how Git looks and…
-
Git Merge and Merge Conflict In Git, the merging is a procedure to connect the forked history. It joins two or more…
-
Git Checkout In Git, the term checkout is used for the act of switching between different versions of a target entity. The…