tldr/pages/common/git-branch.md

24 lines
456 B
Markdown
Raw Normal View History

2015-10-22 08:31:52 +01:00
# git branch
2014-03-09 12:20:13 +00:00
> Main git command for working with branches.
2014-03-09 12:20:13 +00:00
- List local branches. The current branch is highlighted by `*`:
2014-03-09 12:20:13 +00:00
`git branch`
- List all branches (local and remote):
2015-12-28 18:00:06 +00:00
`git branch -a`
- Create new branch based on the current commit:
2014-03-09 12:20:13 +00:00
`git branch {{branch_name}}`
2014-03-09 12:20:13 +00:00
- Rename a branch (must not have it checked out to do this):
2014-03-09 12:20:13 +00:00
`git branch -m {{old_branch_name}} {{new_branch_name}}`
2014-03-09 12:20:13 +00:00
- Delete a local branch:
2014-03-09 12:20:13 +00:00
`git branch -d {{branch_name}}`