I am working on a project where I need to know when exactly a commit was pushed to a remote repository on Github. Using the git APIs and commands I can only find the commit's 'authored_date
' and 'committed_date
', which represent the time of the commit at the local repository.
I tried the approaches presented in this question: Is there a way in git to obtain a push date for a given commit?. They only work when a commit was pushed from the same local machine, while I need them for commits in a cloned projects.
Thank you.