0

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

4

2 回答 2

4

这显示了您对和/path/to/file之间的文件的更改:commit1commit2

git diff <commit1_hash> <commit2_hash> -- /path/to/file
于 2013-03-19T16:46:34.577 回答
2

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

git log --follow -p path/to/file
于 2013-03-20T12:16:05.663 回答