Linux Git 踩坑记录
Linux Git 踩坑记录
git cherry-pick
冲突解决
出现:
error: could not apply xxxxxx(commit ID)... ***** hint: after resolving the conflicts, mark the corrected paths hint: with ‘git add ‘ or ‘git rm ‘ hint: and commit the result with ‘git commit‘
此时使用git status
命令查看发生冲突的文件。
使用git mergetool
解决。
mergetool此时可能尚未配置,设置为kdiff3(其他工具类比):
- 安装kdiff3
- 查看kdiff3路径
which kdiff3 /usr/bin/kdiff3
3.设置kdff3
git config ---global merge.tool kdiff3 git config mergetool.kdiff3.path "/usr/bin/kdiff3"
4.回去继续运行
git mergetool
直接按回车进入默认项,进入kdiff3图形界面,点击ABC按钮选择你需要的代码进行合并。
保存并关闭,若此次cherry-pick还有其他文件冲突,继续操作直至结束。
回去运行git add .
,git cherry-pick --continue
倘若此时还有其他文件冲突,git会提示你,重复以上操作直至冲突解决。
相关推荐
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17
nebulali 2020-09-11
佛系程序员J 2020-09-15
fenggit 2020-09-15
JustHaveTry 2020-09-11
兄dei努力赚钱吧 2020-09-06
IngeniousIT 2020-08-25
liumengyanysu 2020-08-17
guying 2020-08-16