标签: git git-commit git-log
为了比较项目中文件的两个修订版,我做了git log /path/to/file只返回最后一次提交。
git log /path/to/file
执行git blame /path/to/file时,我得到了具有正确sha,日期和作者的每一行的痕迹。
git blame /path/to/file
因此存储了提交但不知何故git log没有显示它们。
git log
有关如何解决这个问题的想法吗?
答案 0 :(得分:5)
该文件可能已在上次提交时被重命名。试试git log --follow -- path/to/file
git log --follow -- path/to/file