I am wondering if there is a way to view a push date associated with each commit in the git log. If that is not possible, is there a way to see all the commits under a cert
Why git AuthorDate is different from CommitDate?
AuthorDate is when the commit was first created.CommitDate is when the commit was last modified (e.g. rebase).You can get those with the --pretty formatting options:
o %cd: committer date
o %cD: committer date, RFC2822 style
o %cr: committer date, relative
o %ct: committer date, UNIX timestamp
o %ci: committer date, ISO 8601 format
So, if you and other developers are doing git rebase before git push,
you will end up with a commit date that is later than the author date.
This command shows the commit date: git log --pretty=fuller