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

git命令行解决冲突方法

时间:2020-05-06 22:04:31      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:记录   win   mes   led   命令行   app   tomat   文件中   code   

方法一、

git pull 出现冲突后丢弃本地冲突文件,使用远程文件覆盖本地文件

git checkout [文件路径]
git checkout test/src/main/resources/application.yml
git pull;
IDEA 可以试用revert

方法二、

git pull 出现冲突后可以暂存本地修改git stash save "savemessage",然后git pull 更新代码,git stash list 可查看暂存记录列表,释放本地暂存 git stash apply stash@{0} ,出现冲突文件,找到并解决,然后可以提交git add . 加入索引库,然后本地提交git commit -m ‘注释‘ 最后git push到远程

方法三、

  1. 当执行git pull更新代码时,发现以下错误
error: Your local changes to the following files would be overwritten by merge:application.yml
Please commit your changes or stash them before you merge.

? 这说明你的application.yml与远程有冲突,你需要先提交本地的修改然后更新。

  1. git add application.yml,然后使用 git commit -m ‘冲突解决‘

    提交本地的application.yml文件,不进行推送远程

  2. git pull,更新代码会出现以下错误提示

    Auto-merging application.yml
    CONFLICT (content): Merge conflict in application.yml
    Automatic merge failed; fix conflicts and then commit the result.
    

    更新后你的本地分支上会出现 (develop|MERGING)类似这种标志

  3. 找到你本地的application.yml文件,并打开

你会在文件中发现<<<<<<< HEAD ,======= ,>>>>>>> ae9a0f6b7e42fda2ce9b13cfc5344d61

这种标记,<<<<<<< HEAD和=======中间的是你自己的代码, ======= 和>>>>>>>中间的是其他人修改的代码

自己确定保留那一部分代码,最后删除<<<<<<< HEAD ,======= ,>>>>>>>这种标志

  1. 重新使用git add application.yml,然后git commit -m ‘冲突解决结束‘,再次将本地的application.yml文件提交

  2. 解决冲突后,使用git push,将文件推送到远程

git命令行解决冲突方法

标签:记录   win   mes   led   命令行   app   tomat   文件中   code   

原文地址:https://www.cnblogs.com/quartz/p/12838935.html

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