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会提示你,重复以上操作直至冲突解决。
原文地址:https://www.cnblogs.com/NamakoNeko/p/12256576.html
时间: 2024-10-10 02:51:34