1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 07:18:29 +01:00
tldr/pages/common/git-branch.md
2016-01-08 09:38:59 +01:00

23 lines
369 B
Markdown

# git branch
> Main command for working with branches.
- List local branches. The current branch is highlighted by `*`:
`git branch`
- List all local and remote branches:
`git branch -a`
- 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`