当我使用git mergetool时,它默认为TortoiseSvn mergetool。
有没有办法配置git mergetool来代替使用TortoiseGit?
答案 0 :(得分:0)
这可能是一个路径问题(TortoiseSVN/bin
在TortoiseGit/bin
之前首先出现的路径。
但您可以使用以下配置明确定义所需的mergetool
:
git config merge.tool tortoise
git config mergetool.tortoise.cmd "c:/Program Files/TortoiseGit/bin/TortoiseMerge.exe" \
/base:"$BASE" /theirs:"$REMOTE" /mine:"$LOCAL" /merged:"$MERGED"