Git Cheat Sheet

From Gejoreuy
Revision as of 13:55, 9 July 2020 by Gejor (talk | contribs)
Jump to navigation Jump to search

https://www.earthdatascience.org/workshops/intro-version-control-git/basic-git-commands/


Create Branch from Master or Other Branch

$ git pull
$ git checkout -b [new_branch_name]
$ git push origin [new_branch_name]
$ git config core.autocrlf false