码迷,mamicode.com
首页 > 其他好文 > 详细

git fatal: 拒绝合并无关的历史的错误解决

时间:2019-11-08 12:30:01      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:初始   class   origin   git   pytho   fetch   ons   ice   错误解决   

本地初始化的项目 与 github 版本不一致, 导致无法提交
 
$ git pull origin master
来自 https://github.com/itaken/python-login-demo
 * branch            master     -> FETCH_HEAD
fatal: 拒绝合并无关的历史
解决方法
 
在pull 时候, 添加–allow-unrelated-histories参数 即可.
 
$ git pull origin master --allow-unrelated-histories                   
来自 https://github.com/itaken/python-login-demo
 * branch            master     -> FETCH_HEAD
Merge made by the recursive strategy.
 LICENSE | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 LICENSE

 

git fatal: 拒绝合并无关的历史的错误解决

标签:初始   class   origin   git   pytho   fetch   ons   ice   错误解决   

原文地址:https://www.cnblogs.com/fuyuteng/p/11819141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!