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

24 lines
369 B
Markdown
Raw Normal View History

2015-10-22 09:31:52 +02:00
# git branch
2014-03-09 13:20:13 +01:00
> Main command for working with branches.
2014-03-09 13:20:13 +01:00
- List local branches. The current branch is highlighted by `*`:
2014-03-09 13:20:13 +01:00
`git branch`
- List all local and remote branches:
2015-12-28 19:00:06 +01:00
`git branch -a`
- Create new branch based on current branch:
2014-03-09 13:20:13 +01:00
2014-12-21 07:36:16 +01:00
`git branch {{BRANCH-NAME}}`
2014-03-09 13:20:13 +01:00
- Delete a local branch:
2014-03-09 13:20:13 +01:00
`git branch -d {{BRANCH-NAME}}`
- Move/Rename a branch:
2014-03-09 13:20:13 +01:00
2014-12-21 07:36:16 +01:00
`git branch -m`