This file contains hidden or 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 delete branch with force | |
git branch -D branch_name | |
# git rename branch | |
git branch -m <oldname> <newname> | |
# ... or if the current branch | |
git branch -m <newname> | |
# change up stream |
OlderNewer