Is there a way in git to obtain a push date for a given commit?

后端 未结 8 2005
眼角桃花
眼角桃花 2020-11-27 12:25

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

8条回答
  •  渐次进展
    2020-11-27 12:58

    Take a look at git reflog show master. Probably not the exact format you want, but should point you in the right direction.

    Another idea is running a script inside a push hook.

提交回复
热议问题