git-difftool:使用 meld 比较完整文件树?
在 meld 中是否有一种简单的方法可以将旧 git 提交的文件树与工作文件树进行比较?
git-difftool 做了一些非常相似的事情,但我不希望它实际上做任何比较;重点是它所调用的工具可以为此提供更好的界面。
Is there an easy way to compare the file tree of an old git commit with the working file tree, in meld?
git-difftool does something very similar, but I don't want it to actually do any diffing; the whole point is that the tool it is calling can provide a better interface for that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
git >;从 1.7.11 开始,
git difftool
命令现在支持使用--dir-diff
命令比较完整的目录。这可以与meld
一起使用:With
git > 1.7.11
, thegit difftool
command now supports diffing complete directories using the--dir-diff
command. This can be used together withmeld
:我已经在最新版本的 meld 上对此进行了测试,现在它已内置。您可以将它与 meld一起使用。所以“融合”。适用于当前目录。您可以签出版本 git co [version] 然后 git reset [version]^ 然后运行“meld”。将任何版本与之前的版本进行比较。
I've tested this on a recent version of meld and it is now built in. You can use it with meld <directory path> so "meld ." works for the current directory. You can checkout a version git co [version] then git reset [version]^ and then run "meld ." to compare any version with it's previous version.
我还发现这个问题很烦人,所以我制作了 git meld,它允许以更舒适的方式根据工作树或暂存区域区分任意提交。您可以在 https://github.com/wmanley/git-meld 找到它。
I also found this issue annoying so I've made git meld which allows a more comfortable way of diffing arbitrary commits against the working tree or the staging area. You can find it at https://github.com/wmanley/git-meld .