1
現在,無論何時使用git mergetool,它都會默認TortoiseSvn mergetool。Git mergetool使用TortoiseSvn而不是Windows上的TortoiseGit
有沒有辦法將git mergetool配置爲使用TortoiseGit?
現在,無論何時使用git mergetool,它都會默認TortoiseSvn mergetool。Git mergetool使用TortoiseSvn而不是Windows上的TortoiseGit
有沒有辦法將git mergetool配置爲使用TortoiseGit?
這可能是一個路徑問題(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"