mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-01-08 02:15:51 +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` |