从远程拉到本地的时候提示错误
造成原因:
1. 远程仓库和本地仓库内容不相关,合并不兼容。
2. 目录有问题,.git可能意外被删除。如果克隆或清理项目时可能会发生这种情况。
3. 从远程仓库拉取或推送数据时,分支位于不同的HEAD位置,并且由于缺乏共性而不发匹配。
我出现的问题:创建新远程仓库,里面README.md文件未拉取到本地仓库,所以不兼容。
解决办法:
在git pull 和 git push 命令中添加 -allow-unrelated-histories,让git允许提交不关联的历史代码
git pull origin master --allow-unrelated-histories
git push origin master --allow-unrelated-histories
标签:pull,git,仓库,histories,unrelated,报错,allow From: https://www.cnblogs.com/tianxinya/p/17285800.html