git-difftool: full file tree compare using meld?

前端 未结 3 698
执念已碎
执念已碎 2021-02-07 03:52

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

3条回答
  •  醉梦人生
    2021-02-07 04:39

    With git > 1.7.11, the git difftool command now supports diffing complete directories using the --dir-diff command. This can be used together with meld:

    $ git difftool --tool=meld --dir-diff [commit-to-diff-against]
    

提交回复
热议问题