赞
踩
第一步:修改本地仓库分支名称
git branch -m oldName newName
第二步:删除远程仓库分支
git push --delete origin/oldName
【注:此时不能git pull会报错】
第三步:先将本地分支与远程仓库解除绑定
git branch --unset-upstream
第四步:重新绑定远程分支
git branch --set-upstream-to=origin/newName
第五步:推送到远程仓库
git push
原文链接:https://blog.csdn.net/qq_30652245/article/details/125794811
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。