2014年6月更新:David Fraser在评论中提到了一个解决方案,也在“改变时间戳,同时重基git分支”中详细介绍,使用选项——committer-date-is-author-date(最初于2009年1月在commit 3f01ad6中引入)
注意——committer-date-is-author-date选项似乎会保留作者的时间戳,并将提交者的时间戳设置为与原始作者的时间戳相同,这正是OP Olivier Verdier想要的。
我找到了最后一个具有正确日期的提交,并做了:
git rebase——commit -date-is-author-date SHA
见git am:
——committer-date-is-author-date
默认情况下,该命令记录电子邮件消息的日期作为提交作者日期,并使用创建提交的时间作为提交者日期。
这允许用户通过使用与作者日期相同的值来谎报提交者日期。
注意:在Git 2.29 (Q4 2020)中,Git rebase——committer-date-is-author-date或——ignore-date也可以用于:
Interactive rebase (rebase -i/rebase——Interactive)
对于根提交(git rebase——root)
参见“更改时间戳,同时重基git分支”。
(原答案,2012年6月)
您可以尝试一下,进行非交互的rebase
(见上文:在Git 2.29, 2020年Q4中,它也可以与交互式rebase一起工作)
git rebase --ignore-date
(来自这个SO答案)
这被传递给git am,它提到:
--ignore-date
默认情况下,该命令记录电子邮件消息的日期作为提交作者日期,并使用创建提交的时间作为提交者日期。
这允许用户通过使用与提交者日期相同的值来谎报作者日期。
对于git rebase,此选项“与——interactive选项不兼容”。
因为你可以随意更改旧提交日期的时间戳(使用git filter-branch),我认为你可以根据你想要/需要的提交日期顺序来组织你的git历史,甚至可以将其设置为未来!
正如Olivier在他的问题中提到的,作者日期从来不会因更改基数而改变;
从Pro Git书:
作者是最初写这部作品的人,
而提交者是最后申请工作的人。
所以,如果你向一个项目发送了一个补丁,其中一个核心成员应用了这个补丁,你们两个都可以得到积分。
更清楚的是,在这种情况下,正如奥利维尔所说:
——ignore-date与我想要达到的效果相反!
也就是说,它擦除作者的时间戳,并用提交的时间戳替换它们!
所以我问题的正确答案是:
不要做任何事情,因为git rebase在默认情况下实际上不会改变作者的时间戳。
正如dylanyyoung在评论中补充的那样,使用“如何在git重基期间通过哈希识别冲突的提交?”:
Using the SEQUENCE_EDITOR variable and rebase interactive, you would just loop over the current todo list and add a command setting the GIT_COMMITER_DATE to the date of the original commit before each commit in the todo.
It's a bit less fiddly because you have the list of original commits to start with (you don't have to hack into git internals to find it), but a bit more work because you have to handle the entire list at once. –
Once you're able to identify the original commit you can do something like:
git rebase -x 'GIT_COMMITTER_DATE="git show -s --format=%ci ``get_current_commit``" git commit --amend --no-edit