本文主要是介绍(已解决)master提交项目到远程仓库出现There isn’t anything to compare. main and master are entirely different ...”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一、问题
- 二、分析及解决
一、问题
在GitHub pull requests时出现There isn’t anything to compare. main and master are entirely different commit histories.
二、分析及解决
这是由于提交的分支与原有main完全不同导致系统不允许合并。
可能非最优但有用
# 切换分支至master
git checkout master
# 强制重命名master分支为main分支
git branch main master -f
# 切换分支至main
git checkout main
# 强制推送本地main分支至远程库,并覆盖远程main分支内容
git push origin main -f
参考:http://t.csdn.cn/UgRPC
这篇关于(已解决)master提交项目到远程仓库出现There isn’t anything to compare. main and master are entirely different ...”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!