我在Git中安装了Meld作为差异工具。是否可以使用Git或任何其他方式比较两个文件夹?我尝试了以下命令但没有任何反应。
git diff /c/sample/folder1/ /c/sample/folder2/
答案 0 :(得分:3)
如果要比较磁盘上的两个目录,则不需要git
:
meld /c/sample/folder1/ /c/sample/folder2/
如果你想在git中的两个提交之间有一个目录视图:
git difftool -d <commit1> <commit2>
# you can also restrict this directory view to a subdir of your repo :
git difftool -d <commit1> <commit2> -- lib/
答案 1 :(得分:0)