如何使用 Git 的 `difftool` 来合并冲突?

发布于 2024-09-23 23:59:35 字数 194 浏览 5 评论 0原文

合并因某些冲突而失败后,我可以使用 git diff 列出这些内容,但 git difftool 不会使用配置中设置的 difftool 显示它们(在我的例子中 Kaleidscope )。相反,它只会使用普通的 diff。

与之前的提交进行比较的 git difftool 将会起作用。

有没有办法在合并冲突上使用 git difftool ?

After a merge failed with some conflicts, I can list those with git diff, but git difftool won't display them with the difftool set in the config (in my case Kaleidoscope). Instead it will just use normal diff.

A git difftool comparing with a previous commit will work.

Is there a way to use git difftool on merge conflicts?

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

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

发布评论

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

评论(2

空袭的梦i 2024-09-30 23:59:35

尝试 git mergetool 。

Try git mergetool.

思念满溢 2024-09-30 23:59:35

首先尝试:

git difftool -t <yourtool>

如果这不起作用,请查看 man git-difftool 并检查支持的工具列表。检查其中之一是否满足您的要求,如果满足,那么您已将范围缩小到 git 不支持 Kaleidoscopy,这可能需要一些其他配置调整。

Firstly try:

git difftool -t <yourtool>

If that doesn't work, look at man git-difftool and check the list of supported tools. Check if one of those does what you want, if it does then you've narrowed it down to git not supporting Kaleidoscope, which may need some other config tweaking.

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