1、修改本地分支名称
git branch -m oldBranchName newBranchName
2、将本地分支的远程分支删除
git push origin :oldBranchName
3、将改名后的本地分支推送到远程,并将本地分支与之关联
git push --set-upstream origin newBranchName
Git push命令报hint: Updates were rejected because the remote contains work that you do问题:
提示:更新被拒绝,因为远程包含您所做的工作
提示:不要在本地使用。这通常是由另一个存储库推送引起的
提示:对于相同的ref。您可能需要首先集成远程更改
提示:(例如,“git pull…”)然后再次按下。
提示:有关详细信息,请参阅“git推送-帮助”中的“关于快进的说明”
git pull origin master --allow-unrelated-histories
Git报错 Git出现 | MERGING的解决
git reset --hard head
转载请注明出处: