Pregunta

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?

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top