你好,我想知道如何解决这个问题。我希望能够看到我的帐户最后一次提交/推送我的github回购时间。
但问题是,在我提出这个问题时,我已提交20-24小时前了。现在github不会显示它只显示“从现在起最近一次提交”的时间。
有没有办法解决像“提交21小时前”这样的事情?
你可以amend the date of your latest commit,和力推。
GIT_COMMITTER_DATE="Mon 20 Aug 2018 20:19:19 BST" git commit --amend --no-edit --date "Mon 20 Aug 2018 20:19:19 BST"
git push ---force
警告:确保将强制推送通告给该repo的任何贡献者:他们必须将其master分支重置为新的origin / master。
另见“Update git commit author date when amending”
git commit --amend --date="$(date -R)" # or another date
同样,需要推力。