赞
踩
合并代码很多冲突,暂停合并,直接撤回了文件,但拉去最新分支代码报错
解决方法:
1、保留本地的更改,中止合并 => 重新合并 => 重新拉取
- git merge --abort
- git reset --merge
- git pull
2、舍弃本地代码,远端版本覆盖本地版本(慎用)
- git fetch --all
- git reset --hard origin/master
- git fetch
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。