Git - 特定文件的提交之间的差异

时间:2013-03-19 16:32:09

标签: git logging diff

我想查看特定文件的旧提交之间的所有差异。 该命令应该是什么?

2 个答案:

答案 0 :(得分:4)

这会显示/path/to/filecommit1之间文件commit2的更改:

git diff <commit1_hash> <commit2_hash> -- /path/to/file

答案 1 :(得分:2)

如果您想查看特定文件的更改历史记录:

git log --follow -p path/to/file