git commit --amend --date="now"
也可以改为指定时间格式:
git commit --amend --date="Mon Jan 25 10:37:36 2024 +0300"
如果是要修改更早之前的commit记录的时间,则需要搭配使用git rebase。
1)首先rebase指定的父提交节点:
git rebase -i <parent_commit_hash>
GIT_COMMITTER_DATE="Wed Jan 9 22:00 2024 +0530" git commit --amend --no-edit
git rebase --continue