如何配置 git merge tool?
Last updated
Last updated
当文件进入冲突状态时,可以配置一个好用的 git merge tool 来解决冲突。
当前版本的 vscode 虽然能标注 git conflict 状态,但还未能实现 three-way merge 功能(#5770),文本以老牌对比工具 Beyond Compare 为例,介绍如何配置 git merge tool。
首先从 Beyond Compare 菜单中选择 Install Command Line Tools,然后运行以下配置命令:
设置完成后,即可使用 Beyond Compare Text Merge 功能打开待解决冲突的文件:
在 Beyond Compare 的 merge 界面中,「上左」与「上右」面板为合并发生冲突的两次提交版本,「上中」为前次历史版本,「下方」为合并后的代码。
「下方」面板中,「红色!」表示当前行代码发生了冲突,点击「蓝色⇨」或「紫色⇨」,可以分别选择上方需要的代码。合并完成后,保存并关闭窗口,文件会被自动标记为已解决状态,添加至暂存区。
打开 Source Tree,配置外部对比、合并工具为 Beyond Compare。
在 SourceTree 中右键选中冲突的文件,使用指定工具解决冲突