Git: Difference between revisions

From Celeste@Hoppinglife
Jump to navigation Jump to search
Created page with "Git is the de-facto standard of distributed version control system. === Tips === * Use the following command to fetch and merge a branch without checking it out: <pre class..."
 
(No difference)

Latest revision as of 16:12, 7 June 2020

Git is the de-facto standard of distributed version control system.

Tips

  • Use the following command to fetch and merge a branch without checking it out:
$ git fetch <remote> <srcBranch>:<destBranch>