Git vs SVN Apache Subversion or SVN is one of the most popular centralized version control systems. Now, SVN’s popularity is on…
commit reference in git
-
-
What is GitHub? GitHub is a Git repository hosting service. GitHub also facilitates with many of its features, such as access control…
-
Install Git on Ubuntu Git is an open-source distributed version control system that is available for everyone at zero cost. It is…
-
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…