-
Star 2,168
You must be signed in to star a gist -
Fork 384
You must be signed in to fork a gist
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
This worked perfectly. Thank you.
It worked perfectly. Thank you.
Thanks It is working.
Thanks, it helped me!
@chrisivens you've saved my day. Thanks
Thanks a lot 🌹
I have a better alias, that only requires you to specify the new branch name you want.
[alias]
rename = "!moveit() { git push origin --delete `git branch --show-current` || true; git branch -m $1; git push --set-upstream origin $1; }; moveit"
It tries to delete your current branch remotely first, but continues on if this fails. Then renames it locally, and then pushes the newly named branch.
It may be problematic if you have stuff on your remote branch that you don't have locally, but, that's extremely unlikely, although you may need to dig into git reflog to find them in that edge case. If you want to preserve your old/current remote branch name, don't use this.
Usage - renames your current branch:
git rename new_branch_name
First time I saw a gist with three lines having 2k stars lol
Thank you so much
Thanks a lot !! Worked smoothly
PowerShell function/module for this https://gist.github.com/30b513e40ada3e171e99e57d25c45f1c
Thanks, great. It works as expected.
Thanks you
Thank you
Very helpful. Thank you so much!
Thank you very much
you pusted this solution 8 years ago ... but still working like a charm. ✅
Thank You so much!
Very helpful. Thank you so much!
Thanks! (again) ❤️
thanks...its working
Thanks!
awesome
Thanks!
Thanks. It worked like a charm.
Thanks!
Thanks!
Great!
Still works, thanks a lot!
how to rename a git branch