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 |
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
Very helpful. Thank you so much!