Recently when I try to open git blame
, but it shows the wrong data, like it shows one person and one date for the whole project.
Any idea what can cause that?
I'm using android studio but it does show the same thing in the terminal.
That could be the result of a massive commit involving all lines from all files, because of a code format operation.
Or because all end-of-lines have been changed from CRLF to LF (or LF to CRLF).
Check the files from the most recent commit with git show --pretty=%gd --stat
: if you see all files, that would be a confirmation.
The OP max mentions in the comments:
I just clone the project again project and it's working now.
It is a very big project, so I think something during cloning something went wrong at first time.