其他分享
首页 > 其他分享> > Git :fatal: refusing to merge unrelated histories解决

Git :fatal: refusing to merge unrelated histories解决

作者:互联网

Git :fatal: refusing to merge unrelated histories解决
今天本地创建了一个仓库(有README),把本地仓库和Github上关联以后,发现git pull,git feach提醒fatal: refusing to merge unrelated histories

上网查到原因是两个分支是两个不同的版本,具有不同的提交历史


加一句

$git pull origin master --allow-unrelated-histories

  


可以允许不相关历史提,强制合并,确实解决了这个问题,感谢网友
————————————————
版权声明:本文为CSDN博主「天骄山仔」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_39400546/article/details/100150320

标签:Git,git,refusing,histories,merge,unrelated,fatal
来源: https://www.cnblogs.com/wntd/p/14609865.html