mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 07:08:01 +00:00
Add Renaming A Branch as a git til.
This commit is contained in:
16
git/renaming-a-branch.md
Normal file
16
git/renaming-a-branch.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Renaming A Branch
|
||||
|
||||
The `-m` flag can be used with `git branch` to move/rename an existing
|
||||
branch. If you are already on the branch that you want to rename, all you
|
||||
need to do is provide the new branch name.
|
||||
|
||||
```bash
|
||||
$ git branch -m <new-branch-name>
|
||||
```
|
||||
|
||||
If you want to rename a branch other than the one you are currently on, you
|
||||
must specify both the existing (old) branch name and the new branch name.
|
||||
|
||||
```bash
|
||||
$ git branch -m <old-branch-name> <new-branch-name>
|
||||
```
|
||||
Reference in New Issue
Block a user