第一步:修改本地分支名称
git branch -m old_branch new_branch
第二步:删除远程分支
git push origin :old_branch
第三步:将本地新分支 push 到远程
git push origin new_branch
第四步:取消之前设置的 upstream
git branch --unset-upstream
第五步:将新分支设为 upstream
git push --set-upstream origin new_branch
备注
如果老分支配置过 upstream,前三步之后,本地仍然默认为老分支,不能用简洁的
git push
命令提交代码
进行第四步和第五步,将 upstream 设为新分支,就可以用git push
命令来提交代码了
参考文章
- 《git本地分支和远程分支改名》
https://www.cnblogs.com/frankielf0921/p/9100515.html