Git在pull时因为历史不同无法合并
错误情况
本地初始化的项目和 github 等远程仓库中的版本不一致,倒是无法提交代码
1 | git pull origin master |
解决方案
在pull时添加–allow-unrelated-histories参数即可
1 | git pull origin master --allow-unrelated-histories |
Git在pull时因为历史不同无法合并
本地初始化的项目和 github 等远程仓库中的版本不一致,倒是无法提交代码
1 | git pull origin master |
在pull时添加–allow-unrelated-histories参数即可
1 | git pull origin master --allow-unrelated-histories |
Update your browser to view this website correctly. Update my browser now