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
Take a look at git reflog show master. Probably not the exact format you want, but should point you in the right direction.
git reflog show master
Another idea is running a script inside a push hook.