mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 17:17:57 +01:00
19 lines
273 B
Markdown
19 lines
273 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`
|