如何使用 Git 的 `difftool` 来合并冲突?
合并因某些冲突而失败后,我可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 git mergetool 。
Try
git mergetool
.首先尝试:
如果这不起作用,请查看
man git-difftool
并检查支持的工具列表。检查其中之一是否满足您的要求,如果满足,那么您已将范围缩小到 git 不支持 Kaleidoscopy,这可能需要一些其他配置调整。Firstly try:
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.