For example:
- How can I display when HEAD@{2} was created?
- Given a commit's SHA1, how can I display the date it was pulled into the current repo, rather than (or in addition to) its commit date?
I thought there would be a git reflog
option for this, but as far as I can see, there is not.
git reflog --date=iso
will show the reflog with dates.
This is mentioned indirectly in the manpage:
For more controle over the reflog formatting, you can also use
git log -g
, which also shows the reflog.