新建了一个仓库之后,git拉取的时候,出现了如下错误:
$ git pull
fatal: refusing to merge unrelated histories
出现这个问题一般是因为仓库中已经有了文件,比如README.md
解决方案
在你操作命令后面加 --allow-unrelated-histories
例如:
$ git pull --allow-unrelated-histories
先把代码仓库clone到本地,然后把文件拷贝进去
新建了一个仓库之后,git拉取的时候,出现了如下错误:
$ git pull
fatal: refusing to merge unrelated histories
出现这个问题一般是因为仓库中已经有了文件,比如README.md
在你操作命令后面加 --allow-unrelated-histories
例如:
$ git pull --allow-unrelated-histories
先把代码仓库clone到本地,然后把文件拷贝进去