I have a question about git reflog:
at the beginning of my project, when I did a git reflog, I was able to see all the steps up to my original git clone command.
Today, git reflog no longer goes back up to the git clone command.
More precisely, git reflog returns 4143 lines, and the last lines is truncated:
$ git reflog
6146d34 HEAD@{0}: checkout: moving from feature/cluster to feature/config
[...]
cb14a86 HEAD@{4140}: checkout: moving from master to demo/20170529
b2ef8d6 HEAD@{4141}: checkout: moving from master to demo/20170529
b2ef8d6
$
Can anyone explain me why?
Is there a way to get the entire reflog?
Thanks a lot,
Julien