split git commands
This commit is contained in:
19
pages/common/git-branch.md
Normal file
19
pages/common/git-branch.md
Normal 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`
|
Reference in New Issue
Block a user