在Git中查看和编辑合并的最佳工具是什么?我想要一个3路合并视图,“我的”,“他们的”和“祖先”在单独的面板,和第四个“输出”面板。

此外,调用该工具的指令也很好。(我仍然没有弄清楚如何以这样一种方式启动kdiff3,它不会给我一个错误。)

我的操作系统是Ubuntu。


当前回答

吉特克斯 http://gitx.frim.nl/

当使用大型提交集时,会出现一些错误,但对于浏览更改和选择不同的更改进行阶段并提交非常有用。

其他回答

如果你使用visual studio, Team Explorer内置工具是一个很好的工具来解决git合并冲突。

您可以尝试P4Merge。

使用P4Merge可视化文件版本之间的差异。通过颜色编码解决由并行或并发开发引起的冲突。

特点包括:

Highlight and edit text file differences Choose to include or ignore line endings or white spaces Recognize line-ending conventions for Windows (CRLF), Mac (CR), and Unix (LF) Use command-line parameters and launch from non-Perforce applications Display line numbers when comparing and merging files Exclude files that are modified, unique, or unchanged Filter files by name or extension Organize modified assets in familiar file/folder hierarchy Compare JPEG, GIF, TIFF, BMP, and other file formats Extend using the Qt API Overlay images or display side-by-side Highlight differences on overlaid images

我使用不同的工具进行合并和比较:

git config --global diff.tool diffuse
git config --global merge.tool kdiff3

First可以被调用:

git difftool [BRANCH] -- [FILE or DIR]

当你使用git mergetool时调用第二个。

我听说kdiff3很不错。

Meld是一个免费、开源、跨平台(UNIX/Linux、OSX、Windows)的差异/合并工具。

下面是如何安装它:

Ubuntu Mac Windows:“推荐的Meld Windows版本是最新的版本,可从https://meldmerge.org获得MSI。”