English 中文(简体)
我怎样才能让WinMeorge 成为我的大合用工具?
原标题:How can I make WinMerge my git mergetool?

我试图把温梅格和吉特融合起来 正如我以前在Windows 7 United上看到过的一样

我遵循了以下步骤, 但当我做一个默认为 vimdiff 的 Git 合并工具时, 错误会继续出现 。

在 Git 根目录中创建了名为 Wingmerge.sh 的文件 : C/ program 文件 (x86/ Git/ 使用: WinMorgeU 是正确位置 。

#!/bin/sh
echo Launching WinMergeU.exe: $1 $2
"C:/Program Files (x86)/WinMerge/WinMergeU.exe" 
git /e /u /dl "Base" /dr "Mine" "$1" "$2"

并使用以下命令。

git config --global diff.tool winmerge
git config --global difftool.winmerge.cmd "winmerge.sh "$LOCAL" "$REMOTE""
git config --global difftool.prompt false

错误显示为 :

git config option merge.tool set to unknown tool: winmerge
问题回答

您正在谈论 mege 工具 , 然而您( 和其他有答案的人)却将它配置为 diff 工具

要配置合并工具,您需要使用 merge.tool mergetool 配置,而不是 diff.tool difftool ,例如:

git config --global merge.tool winmerge
git config --replace --global mergetool.winmerge.cmd ""C:Program Files (x86)WinMergeWinMergeU.exe" -e -u -dl "Base" -dr "Mine" "$LOCAL" "$REMOTE" "$MERGED""
git config --global mergetool.prompt false

然后你就可以使用

git mergetool

这将打开您要编辑的两个文件 。

@dvdvck 的 Kudos for @dvdvck 在评论中提到在commander line 参数 中, 您可以为结果文件指定第三个文件, 用于winmerge( 输出参数 ) 。

为了完整起见,我要提到,还有这个gist ,旨在为作为 diff 和 合并工具的双赢完全配置。

如果您决定使用 SourceTree (或任何带有 SourceTree 的 Google 搜索器), 您可以使用 WinMerge 合并工具, 将合并工具设置为自定义工具, 将 Diff 命令指向 WinMorgeU.exe, 通常 :

C:Program Files (x86)WinMergeWinMergeU.exe

参数使用量 :

-e -u -dl "Mine" -wr -dr "Theirs" $LOCAL $REMOTE $MERGED

这将导致左侧( 标签为“ Mine ” ) 可以编辑, 当您保存在 WinMerge 时, 它将成为输出文件 。 右侧( 标签为“ Theirs ” ) 将只读取( 这是 - wr 参数 ), 因为 WinMerge 将全部保存的文件输出到 $MERGED 文件, 所以如果两侧都被编辑, 它会输出左侧, 然后用右侧覆盖它; 最好避免这种混乱 。

如果您让备份文件选项打开, WinMerge 将生成.bak 文件。 如果您保存了多次, 此文件的内容要么是原始左侧文件, 要么是第二到最后输出文件。 您可以关闭此选项, 或者将 *.bak 添加到您的.gitiignore 文件 。

Git 本身会在冲突解决后创建一个. orig 冲突文件, 只是以防你弄坏它。 再说一次, 您可以在您的. gitignore 文件中添加 *. orig, 或者关闭此特性 。 不幸的是, SpourceTree 没有此选项的 GUI 选项, 所以点燃您的 git Bash, 或者, 如果您在安装过程中选择了正确的 PATH 选项, 窗口命令会快速进行 :

git config --global mergetool.keepBackup false

这将停止 Git 创建 *. orig 文件 。 您也可以直接编辑配置文件, 在用户目录根部找到. gitconfig 文件 。 如果您知道如何使用 VIM, 您可以使用此命令编辑整件事 :

git config --global --edit

Git 2.5+ (Q2 2015) 将包括 Winmerge (条目 winmerge , 而不是实际二进制 git muggol 合并工具 条目!

If Winmerge is in your %PATH%, a git config merge.tool winmerge is all you need to do!
(It works for diff tool too: git config diff.tool winmerge)

See commit 3e4f237 by David Aguilar (davvid), 20 May 2015.
(Merged by Junio C Hamano -- gitster -- in commit 324a9f4, 01 Jun 2015)
Helped-by: Philip Oakley (PhilipOakley), Johannes Schindelin (dscho), Sebastian Schuberth (sschuberth), SZEDER Gábor (szeder)

所有的配置现在都在 Git 中直接完成, https://github. com/ git/ git/ git/ blob/3244a9f41cbf96ad994efc3b20be239116eba0dae/ mergetols/winmerge" rel=“ 不跟随 noreferrerr"\\ code>mergetools/winmerge :

  • diff command: "$merge_tool_path" -u -e "$LOCAL" "$REMOTE"
  • merge command: "$merge_tool_path" -u -e -dl Local -dr Remote "$LOCAL" "$REMOTE" "$MERGED"

mergetools: add winmerge as a builtin tool

添加“ href=” 中描述的命令的winmerge 脚本, 以便用户无需执行任何附加配置即可使用 Wingmerge 。 @ a href=“ http://thread. gmane.org/gmane.comp.version- control. git/268631” rel=“ nofollow noreferrer” > this listle , 这样用户就可以使用 Wingmerge 。


2023-05-17的最新消息,我认为最好的指挥线如下:

>"C:/Program 文件/WinMelge/winmergeu.exe” -e - u -am -wl -wl -wr -fm -dl “Mine:$LOCAL” -dl “Merged:$BASE” -dr “Theirs:$REMOTE” “$LOCAL” “$BASE” -o “$MERGED”

Please note that the -am is used, which means "auto-merge on the middle panel".
The "$LOCAL" "$BASE" "$REMOTE" means show three panels, from left to right, the common base is shown in the middle panel but WinMerge will auto-merge it.
-o "$MERGED" means when we close the WinMerge, the middle panel s content will write to the final file (the one you are trying to fix conflicts).

注:>ollydbg23 要求