Git 报错:fatal: refusing to merge unrelated histories

Posted zpcoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 报错:fatal: refusing to merge unrelated histories相关的知识,希望对你有一定的参考价值。

 

背景:[接上篇git push 出错的随笔]当 pull 远端仓库到本地的时候,出现以下错误:

错误情况

技术图片

出错原因:主要原因还是在于本地仓库和远程仓库实际上是独立的两个仓库,假如我之前是直接以 clone 的方式在本地建立起远程 github 仓库克隆的本地仓库就不会有这个问题了。

解决方式:可以在 pull 命令后紧接着使用 --allow-unrelated-history 选项来解决问题(该选项可以合并连个独立启动仓库的历史)

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

 

以上是关于Git 报错:fatal: refusing to merge unrelated histories的主要内容,如果未能解决你的问题,请参考以下文章

GIt -- fatal: refusing to merge unrelated histories 问题处理

Git:fatal: refusing to merge unrelated histories

git fatal: refusing to merge unrelated histories

Git fatal: refusing to merge unrelated histories

git 出现 fatal: refusing to merge unrelated histories 错误

fatal: refusing to merge unrelated histories