Github的最新提交显示“从现在开始的一天”

时间:2019-04-10 04:35:06

标签: github

您好,我想知道如何解决此问题。 我希望能够看到我的帐户最后一次在github存储库上提交/推送的时间是

但是问题是我问这个问题的时间是20-24小时之前。 现在github将不会显示时间,它只会显示“ 从现在开始最新提交”。 enter image description here

是否可以解决类似“在21小时前提交”之类的问题?

1 个答案:

答案 0 :(得分:2)

您可以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

警告:确保将强制推送广告发布给该回购的任何贡献者:他们将必须将其master分支重置为新的来源/ master。

另请参阅“ Update git commit author date when amending

git commit --amend --date="$(date -R)" # or another date

再次,需要强行推动。