mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 22:51:13 +03:00
19 lines
270 B
Markdown
19 lines
270 B
Markdown
|
#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`
|