Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top