-
Notifications
You must be signed in to change notification settings - Fork 0
Git
Marie-Louise edited this page Aug 20, 2018
·
34 revisions
create new branch
$ git checkout -b <local_branch_name>
delete branch
$ git branch -d <local_branch_name>
display full list of git branches
$ git branch -a
Push local branch
$ git push origin <local_branch_name>