Is there a way to show when a particular commit was pushed into a remote repo? In other words, I know who made a change (and when it was committed), but I don't know when it was pushed to my production environment in heroku (note: heroku just uses a git push to deploy)
Ideally, it would be something like:
$ git remote myprodrepo show 201421b78ae73a21bc6045a78b4b5db5c54697e7
and I could see when that commit actually got pushed into that repo.
note: the syntax above does not work, and is only there in an attempt to sort of show what I'm trying to accomplish.
(I hope this question makes sense - please ask questions if it doesn't.)