我在 Cygwin 上尝试过 msysGit 和 Git。两者都可以正常工作,并且都可以完美地运行 gitk 和 git-gui。
现在我该如何配置合并工具?(Vimdiff 在 Cygwin 上工作,但我希望对我们一些喜欢 Windows 的同事更友好一些。)
为了跟进 Charles Bailey 的回答,这是我使用p4merge(免费跨平台 3way 合并工具)的 git 设置;在 msys Git (Windows) 上测试安装:
git config --global merge.tool p4merge
git config --global mergetool.p4merge.cmd 'p4merge.exe \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"'
或者,从 Windows cmd.exe shell,第二行变为:
git config --global mergetool.p4merge.cmd "p4merge.exe \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\""
变化(相对于查尔斯贝利):
下载:http ://www.perforce.com/product/components/perforce-visual-merge-and-diff-tools
编辑(2014 年 2 月)
正如@Gregory Pakosz所指出的,最新的msys git现在“本机”支持p4merge(在1.8.5.2.msysgit.0上测试)。
您可以通过运行显示支持的工具列表:
git mergetool --tool-help
您应该在可用或有效列表中看到p4merge 。如果没有,请更新您的 git。
如果p4merge被列为可用,它在您的PATH中,您只需设置merge.tool:
git config --global merge.tool p4merge
如果它被列为有效,除了merge.tool之外,您还必须定义mergetool.p4merge.path:
git config --global mergetool.p4merge.path c:/Users/my-login/AppData/Local/Perforce/p4merge.exe
~
应该扩展到当前用户的主目录(所以理论上路径应该是~/AppData/Local/Perforce/p4merge.exe
),但这对我不起作用$LOCALAPPDATA/Perforce/p4merge.exe
),git似乎没有为路径扩展环境变量(如果你知道如何让它工作,请让我知道或更新这个答案)设置 mergetool.p4merge.cmd 将不再起作用,因为 Git 已经开始尝试支持 p4merge,请参阅 libexec/git-core/git-mergetool--lib.所以我们只需要指定 git 的 mergetool 路径,例如 p4merge:
git config --global mergetool.p4merge.path 'C:\Program Files\Perforce\p4merge.exe'
git config --global merge.tool p4merge
然后它将起作用。
我在 WinXP 上使用 Portable Git(很好用!),并且需要解决分支中出现的冲突。在我检查的所有 gui 中,KDiff3被证明是最透明的使用。
但我在这篇博文中找到了让它在 Windows 中工作所需的说明,这些说明与此处列出的其他方法略有不同。它基本上相当于将这些行添加到我的.gitconfig
文件中:
[merge]
tool = kdiff3
[mergetool "kdiff3"]
path = C:/YourPathToBinaryHere/KDiff3/kdiff3.exe
keepBackup = false
trustExitCode = false
现在工作很好!
在 Cygwin 下,唯一对我有用的是:
git config --global merge.tool myp4merge
git config --global mergetool.myp4merge.cmd 'p4merge.exe "$(cygpath -wla $BASE)" "$(cygpath -wla $LOCAL)" "$(cygpath -wla $REMOTE)" "$(cygpath -wla $MERGED)"'
git config --global diff.tool myp4diff
git config --global difftool.myp4diff.cmd 'p4merge.exe "$(cygpath -wla $LOCAL)" "$(cygpath -wla $REMOTE)"'
另外,我喜欢关闭 difftool 的提示信息:
git config --global difftool.prompt false
git mergetool
是完全可配置的,因此您几乎可以选择自己喜欢的工具。
完整的文档在这里:http ://www.kernel.org/pub/software/scm/git/docs/git-mergetool.html
简而言之,您可以通过设置用户配置变量来设置默认合并工具merge.tool
。
如果合并工具是它本机支持的工具之一,您只需设置mergetool.<tool>.path
该工具的完整路径(替换<tool>
为您配置merge.tool
的内容。
否则,您可以设置mergetool.<tool>.cmd
一些 shell 以在运行时进行评估,并将 shell 变量$BASE, $LOCAL, $REMOTE, $MERGED
设置为适当的文件。无论是直接编辑配置文件还是使用命令设置变量,都必须小心转义git config
。
像这样的东西应该给你可以做的事情的味道(“mymerge”是一个虚构的工具)。
git config merge.tool mymerge
git config merge.mymerge.cmd 'mymerge.exe --base "$BASE" "$LOCAL" "$REMOTE" -o "$MERGED"'
一旦你设置了你最喜欢的合并工具,git mergetool
只要你有冲突需要解决,就只需运行即可。
Perforce 的 p4merge 工具是一个非常好的独立合并工具。
在 Windows 7 上无与伦比
git config --global merge.tool bc3
git config --global mergetool.bc3.path "C:\Program Files (x86)\Beyond Compare 3\BCompare.exe"
似乎较新的 git 版本直接支持 p4merge,所以
git config --global merge.tool p4merge
如果 p4merge.exe 在您的路径上,应该是您所需要的。无需设置 cmd 或路径。
我不得不在 Windows 7 上使用 msysGit 删除额外的引用,不知道为什么。
git config --global merge.tool p4merge
git config --global mergetool.p4merge.cmd 'p4merge $BASE $LOCAL $REMOTE $MERGED'
我在 github Windows 中找到了两种将“ SourceGear DiffMerge ”配置为 difftool 和 mergetool 的方法。
命令提示符窗口中的以下命令将更新您的 .gitconfig 以配置 GIT 使用 DiffMerge:
git config --global diff.tool diffmerge
git config --global difftool.diffmerge.cmd 'C:/Program\ Files/SourceGear/Common/DiffMerge/sgdm.exe \"$LOCAL\" \"$REMOTE\"'
git config --global merge.tool diffmerge
git config --global mergetool.diffmerge.cmd 'C:/Program\ Files/SourceGear/Common/DiffMerge/sgdm.exe -merge -result=\"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"'
[或]
将以下行添加到您的 .gitconfig 中。此文件应位于 C:\Users\UserName 的主目录中:
[diff]
tool = diffmerge
[difftool "diffmerge"]
cmd = C:/Program\\ Files/SourceGear/Common/DiffMerge/sgdm.exe \"$LOCAL\" \"$REMOTE\"
[merge]
tool = diffmerge
[mergetool "diffmerge"]
trustExitCode = true
cmd = C:/Program\\ Files/SourceGear/Common/DiffMerge/sgdm.exe -merge -result=\"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
如果您通过 cygwin 执行此操作,则可能需要使用 cygpath:
git config --global merge.tool p4merge
git config --global mergetool.p4merge.cmd 'p4merge `cygpath -w $BASE` `cygpath -w $LOCAL` `cygpath -w $REMOTE` `cygpath -w $MERGED`'
呸,这终于对我有用(Windows 7 + Cygwin + TortoiseMerge):
在 .git/config 中:
cmd = TortoiseMerge.exe /base:$(cygpath -d \"$BASE\") /theirs:$(cygpath -d \"$REMOTE\") /mine:$(cygpath -d \"$LOCAL\") /merged:$(cygpath -d \"$MERGED\")
感谢以前的海报使用 cygpath 的提示!
我使用他们手册中的一个名为 WinMerge ( http://winmerge.org/ ) 的应用程序 ( http://manual.winmerge.org/CommandLine.html )
mergetool
这是我通过指令使用的 bash 脚本.gitconfig
#!/bin/sh
# using winmerge with git
# replaces unix style null files with a newly created empty windows temp file
file1=$1
if [ "$file1" == '/dev/null' ] || [ "$file1" == '\\.\nul' ] || [ ! -e "$file1" ]
then
file1="/tmp/gitnull"
`echo "">$file1`
fi
file2=$2
if [ "$file2" == '/dev/null' ] || [ "$file2" == '\\.\nul' ] || [ ! -e "$file2" ]
then
file2="/tmp/gitnull"
`echo "">$file2`
fi
echo diff : $1 -- $2
"C:\Program files (x86)\WinMerge\WinMergeU.exe" -e -ub -dl "Base" -dr "Mine" "$file1" "$file2"
基本上 bash 说明了 diff 的结果何时在一个空文件中并在正确的位置创建一个新的临时文件。
您可能还想添加这些选项:
git config --global merge.tool p4mergetool
git config --global mergetool.p4merge.cmd 'p4merge $BASE $LOCAL $REMOTE $MERGED'
git config --global mergetool.p4mergetool.trustExitCode false
git config --global mergetool.keepBackup false
另外,我不知道为什么,但米兰加迪安的回答中的引用和斜线让我搞砸了。
如果有人想在 TortoiseGit 上使用 gvim 作为他们的 diff 工具,那么您需要在文本输入中输入外部 diff 工具的路径:
path\to\gvim.exe -f -d -c "wincmd R" -c "wincmd R" -c "wincmd h" -c "wincmd J"
Windows环境下IntelliJ IDEA(社区版)3路git mergetool配置(~/.gitconfig
)
赛格温
[mergetool "ideamerge"]
cmd = C:/Program\\ Files\\ \\(x86\\)/JetBrains/IntelliJ\\ IDEA\\ Community\\ Edition\\ 14.1.3/bin/idea.exe merge `cygpath -wa $LOCAL` `cygpath -wa $REMOTE` `cygpath -wa $BASE` `cygpath -wa $MERGED`
[merge]
tool = ideamerge
系统
[mergetool "ideamerge"]
cmd = "/c/Program\\ Files\\ \\(x86\\)/JetBrains/IntelliJ\\ IDEA\\ Community\\ Edition\\ 14.1.3/bin/idea.exe" merge `~/winpath.sh $LOCAL` `~/winpath.sh $REMOTE` `~/winpath.sh $BASE` `~/winpath.sh $MERGED`
[merge]
tool = ideamerge
~/winpath.sh 是在 msys 上将路径转换为 Windows,取自stackoverflow 上的 msys 路径转换问题
#! /bin/sh
function wpath {
if [ -z "$1" ]; then
echo "$@"
else
if [ -f "$1" ]; then
local dir=$(dirname "$1")
local fn=$(basename "$1")
echo "$(cd "$dir"; echo "$(pwd -W)/$fn")" | sed 's|/|\\|g';
else
if [ -d "$1" ]; then
echo "$(cd "$1"; pwd -W)" | sed 's|/|\\|g';
else
echo "$1" | sed 's|^/\(.\)/|\1:\\|g; s|/|\\|g';
fi
fi
fi
}
wpath "$@"
要设置 p4merge,在 Windows 上使用 Chocolatey 安装以进行合并和差异,请看这里: https ://gist.github.com/CamW/88e95ea8d9f0786d746a
如果您在从 SourceTree 打开 p4merge 时遇到问题,请在 MyRepo.git 下查找名为config的本地配置文件并删除任何合并配置。就我而言,它试图打开我刚刚卸载的 Meld
对于 kdiff3,您可以使用:
git config --global merge.tool kdiff3
git config --global mergetool.kdiff3.path "C:/Program Files/KDiff3/kdiff3.exe"
git config --global mergetool.kdiff3.trustExitCode false
git config --global diff.guitool kdiff3
git config --global difftool.kdiff3.path "C:/Program Files/KDiff3/kdiff3.exe"
git config --global difftool.kdiff3.trustExitCode false