美文网首页
十一、git error无法pull仓库refusing to

十一、git error无法pull仓库refusing to

作者: 緦菍亭芷 | 来源:发表于2020-04-08 15:14 被阅读0次

    转载: git无法pull仓库refusing to merge unrelated histories

    git无法pull仓库refusing to merge unrelated histories

    • 如果合并了两个不同的开始提交的仓库,在新的 git 会发现这两个仓库可能不是同一个,为了防止开发者上传错误,于是就给下面的提示:fatal: refusing to merge unrelated histories
    • 如我在Github新建一个仓库,写了License,然后把本地一个写了很久仓库上传。这时会发现 github 的仓库和本地的没有一个共同的 commit 所以 git 不让提交,认为是写错了 origin ,如果开发者确定是这个 origin 就可以使用 --allow-unrelated-histories 告诉 git 自己确定
    • 因为他们是两个不同的项目,要把两个不同的项目合并,git需要添加一句代码,在 git pull 之后,这句代码是在git 2.9.2版本发生的,最新的版本需要添加 --allow-unrelated-histories 告诉 git 允许不相关历史合并
    • 假如我们的源是origin,分支是master,那么我们需要这样写git pull origin master --allow-unrelated-histories 如果有设置了默认上传分支就可以用下面代码

    相关文章

      网友评论

          本文标题:十一、git error无法pull仓库refusing to

          本文链接:https://www.haomeiwen.com/subject/xnytmhtx.html