fatal: refusing to merge unrelated histories问题处理

新建了一个仓库之后,git拉取的时候,出现了如下错误:

$ git pull
fatal: refusing to merge unrelated histories

出现这个问题一般是因为仓库中已经有了文件,比如README.md

解决方案

  1. 在你操作命令后面加 --allow-unrelated-histories
    例如:
    $ git pull --allow-unrelated-histories

  2. 先把代码仓库clone到本地,然后把文件拷贝进去

你可能感兴趣的:(fatal: refusing to merge unrelated histories问题处理)