質問

In order to compare two revisions of a file in a project, I did a git log /path/to/file which only returns the last commit.

When executing git blame /path/to/file I got the trace of each line with the correct sha, dates, and authors.

So the commits are stored but somehow git log doesn't show them.

Any idea on how to fix this?

役に立ちましたか?

解決

The file was probably renamed copied in its last commit. Try git log --follow -- path/to/file

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top