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