mirror of https://github.com/CrimsonTome/tldr.git
14 lines
340 B
Markdown
14 lines
340 B
Markdown
# git rename-branch
|
|
|
|
> Rename a Git branch.
|
|
> Part of `git-extras`.
|
|
> More information: <https://github.com/tj/git-extras/blob/master/Commands.md#git-rename-branch>.
|
|
|
|
- Rename the branch you are currently on:
|
|
|
|
`git rename-branch {{new_branch_name}}`
|
|
|
|
- Rename a specific branch:
|
|
|
|
`git rename-branch {{old_branch_name}} {{new_branch_name}}`
|