split git commands

This commit is contained in:
kxy
2014-03-09 13:20:13 +01:00
parent b609908fe0
commit 4d70294f06
12 changed files with 141 additions and 59 deletions

View File

@@ -0,0 +1,19 @@
#git branch
> Main command for working with branches
- List all existing branches
`git branch`
- Create new branch based on current branch
`git branch {{BRANCH-NAME}}
- Delete a local branch
`git branch -d {{BRANCH-NAME}}`
- Move/Rename a branch
`git branch -m`