Git mergetool 在 Windows 上使用 TortoiseSvn 而不是 TortoiseGit

发布于 2024-10-30 17:12:01 字数 112 浏览 1 评论 0原文

目前,每当我使用 git mergetool 时,它都会默认使用 TortoiseSvn mergetool。

有没有办法配置 git mergetool 以使用 TortoiseGit 代替?

At the moment whenever I use the git mergetool, it is defaulting the TortoiseSvn mergetool.

Is there a way to configure the git mergetool to use TortoiseGit instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尾戒 2024-11-06 17:12:01

这可能是路径问题(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"

It could be a path issue (the path for TortoiseSVN/bin coming first, before TortoiseGit/bin).

But you could define explicitly the mergetool you want with a config like:

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"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文