当前位置:   article > 正文

Git命令使用出现Automatic merge failed; fix conflicts and then commit the result.解决方法_automatic merge failed; fix conflicts and then com

automatic merge failed; fix conflicts and then commit the result.

产生原因

    这个问题产生的原因是因为git pull 的时候会分为两步,

      1、先从远程服务器上拉下代码;

      2、进行merge。

merge时候失败了,就会出现“Automatic merge failed; fix conflicts and then commit the result。”

解决方法:

  1. 丢弃本地提交,强制回到线上最新版本
    git fetch --all
    git reset --hard origin/你需要下拉的分支(默认master)
    git fetch
  2. 保存本地提交
    git reset --abort
    git reset --merge
    git commit -am '提交信息'
    git pull
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/459074
推荐阅读
相关标签
  

闽ICP备14008679号