Git Add The git add command is used to add file contents to the Index (Staging Area).This command updates the current content…
git vs svn
-
-
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…
-
Git Origin Master The term “git origin master” is used in the context of a remote repository. It is used to deal…
-
Git Cherry-pick Cherry-picking in Git stands for applying some commit from one branch into another branch. In case you made a mistake…
-
Git Pull / Pull Request The term pull is used to receive data from GitHub. It fetches and merges changes from the…