问题描述
旧项目在拉取/推送版本时失败,报错如下:
1 | > git pull origin master |
或
1 | > git push origin master |
解决方法
在pull
时候, 添加–allow-unrelated-histories
参数即可。
命令如下:
1 | > git pull origin master --allow-unrelated-histories |
原因
本地初始化的项目与git
远程仓库中的版本不一致, 导致无法提交。
以上。
旧项目在拉取/推送版本时失败,报错如下:
1 | > git pull origin master |
或
1 | > git push origin master |
在pull
时候, 添加–allow-unrelated-histories
参数即可。
命令如下:
1 | > git pull origin master --allow-unrelated-histories |
本地初始化的项目与git
远程仓库中的版本不一致, 导致无法提交。
以上。
原文作者:Saki Shum
版权声明:本文采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可