标签: git logging diff
我想查看特定文件的旧提交之间的所有差异。 该命令应该是什么?
答案 0 :(得分:4)
这会显示/path/to/file和commit1之间文件commit2的更改:
/path/to/file
commit1
commit2
git diff <commit1_hash> <commit2_hash> -- /path/to/file
答案 1 :(得分:2)
如果您想查看特定文件的更改历史记录:
git log --follow -p path/to/file