Created
March 18, 2014 20:34
-
-
Save lttlrck/9628955 to your computer and use it in GitHub Desktop.
rename git branch locally and remotely
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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!
Helped a bunch, thanks!
Thanks!
Perfect, thanks
Thank you! It worked, It only made me do my last PR again but not a big deal
👑
This can be done via the GitHub site
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a better alias, that only requires you to specify the new branch name you want.
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: