Git Terminology Git is a tool that covered vast terminology and jargon, which can often be difficult for new users, or those…
Git Tutorial
-
-
Git Tools To explore the robust functionality of Git, we need some tools. Git comes with some of its tools like Git…
-
Upstream and Downstream The term upstream and downstream refers to the repository. Generally, upstream is from where you clone the repository, and…
-
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…
-
Git Clone In Git, cloning is the act of making a copy of any target repository. The target repository can be remote…
-
Git Push The push term refers to upload local repository content to a remote repository. Pushing is an act of transfer commits…
-
Git Rebase Rebasing is a process to reapply commits on top of another base trip. It is used to apply a sequence…