Git: Renaming a Branch
📣 Sponsor
Git branches are an easy way to manage our code, and separate our copies of our code when we want to work on specific features. We can then merge our code back into our main branch, or even rebase it.
Sometimes, though we make a mistake in the naming of our branch. Maybe you wrote fea-ui-design
instead of feat-ui-design
, or maybe you just want to rename your branch completely. Fortunately, it’s easy to rename a branch. First switch to the branch you want to rename using checkout
:
git checkout my-branch
And then use the -m
option on branch
to rename it.
git branch -m new-branch
Now my-branch
has been renamed to new-branch
- it’s as easy as that!
More Tips and Tricks for Git
- Resolving Git Merge Conflicts
- How to make Git forget a tracked file now in .gitignore
- Git Stash - Everything about stashing changes in git
- How to force overwrite local changes with 'git pull'
- The Complete Beginners Guide to Getting Started with Git
- How to amend and update a git commit
- How to Auto Compress Your CSS and JS with Git Hooks
- A Step by Step Guide to Git Branches
- How to make Git ignore file permission (chmod) changes
- Git blame - How to find out who modified a line with Git