From: Phillip Wood <phillip.wood123@gmail.com>
To: kristofferhaugsbakk@fastmail.com, j6t@kdbg.org
Cc: Kristoffer Haugsbakk <code@khaugsbakk.name>,
git@vger.kernel.org, phillip.wood@dunelm.org.uk
Subject: Re: [PATCH] doc: warn against --committer-date-is-author-date
Date: Thu, 9 Oct 2025 14:46:41 +0100 [thread overview]
Message-ID: <3a8dfd13-982d-4c83-b675-1e9a63bb6ab0@gmail.com> (raw)
In-Reply-To: <d17060d9b72.1759952528.git.code@khaugsbakk.name>
Hi Kristoffer
On 08/10/2025 20:45, kristofferhaugsbakk@fastmail.com wrote:
> From: Kristoffer Haugsbakk <code@khaugsbakk.name>
>
> This option has legitimate uses but could create a commit history which
> violates the assumption that commits are strictly increasing in terms of
> commit timestamps. Warn against that in both git-am(1) and git-rebase(1).
>
> ❦
What's this?
> The genesis of this option is 3f01ad66 (am: Add --committer-date-is-
> author-date option, 2009-01-22). The commit message doesn’t give us an
> example of a use case, but the thread starter does:[1]
>
> I've a big set of patches in a mbox file: there's sufficient info
> inside for git-am to work.
>
> Yet, each time I do import these, my sha1sums are changing because of
> different commit dates.
>
> I'd like to force the commit date to match the info/date from the time
> I received the email (and therefore always get back the right
> sha1sums).
>
> So the motivation was to treat git-am(1) as an import command that
> creates the same commit IDs given the same base and committer.
That seems like a reasonable thing for "git am" to do. I'd be interested
to know what the rationale was for adding it to "git rebase". In
retrospect I feel it was a mistake to port this option over to the
sequencer just to match what the am based rebase did.>
> [1]: https://lore.kernel.org/git/46d6db660901221441q60eb90bdge601a7a250c3a247@mail.gmail.com/
>
> I thought about marking it as deprecated but eventually found out why it
> was added. And it wasn’t for some (still unknown) dedication or
> not-explained *want* to keep the committer date and author date in synch
> just-because (as I thought[1]).
We should maybe think about deprecating it for "git rebase" though as it
is a lot less clear that it is sensible there. If you're rebasing a
branch then there is a very high likely hood that the upstream committer
dates of the commits the branch is being rebased onto will be newer that
the author dates of the commits in your branch.
I've left a couple of comments below
> diff --git a/Documentation/git-am.adoc b/Documentation/git-am.adoc
> index 221070de481..c36ae679cfb 100644
> --- a/Documentation/git-am.adoc
> +++ b/Documentation/git-am.adoc
> @@ -156,11 +156,18 @@ Valid <action> for the `--whitespace` option are:
> See also linkgit:githooks[5].
>
> --committer-date-is-author-date::
> - By default the command records the date from the e-mail
> - message as the commit author date, and uses the time of
> - commit creation as the committer date. This allows the
> - user to lie about the committer date by using the same
> - value as the author date.
> + NOTE: The history walking machinery assumes that commits have
> + strictly increasing commit timestamps, with some tolerance for
> + clock skew (see linkgit:git-rev-list[1]).
Is there a particuaar section of the rev-list man page you had in mind
here? I had a quick look and I couldn't see anything about clock skew.
> You should only use
> + this option to lie about the committer date when applying
s/lie/override/ ?
> + commits on top of a base which commit is older (in terms of the
> + commit date) than the oldest patch you are applying.
> ++
> +By default the command records the date from the e-mail
> +message as the commit author date, and uses the time of
> +commit creation as the committer date. This allows the
> +user to lie about the committer date by using the same
> +value as the author date.
>
> --ignore-date::
> By default the command records the date from the e-mail
> diff --git a/Documentation/git-rebase.adoc b/Documentation/git-rebase.adoc
> index 956d3048f5a..336ee90f7e3 100644
> --- a/Documentation/git-rebase.adoc
> +++ b/Documentation/git-rebase.adoc
> @@ -504,9 +504,17 @@ merge backend;;
> See also INCOMPATIBLE OPTIONS below.
>
> --committer-date-is-author-date::
> - Instead of using the current time as the committer date, use
> - the author date of the commit being rebased as the committer
> - date. This option implies `--force-rebase`.
> + NOTE: The history walking machinery assumes that commits have
> + strictly increasing commit timestamps, with some tolerance for
> + clock skew (see linkgit:git-rev-list[1]). You should only use
> + this option to lie about the committer date when applying
> + commits on top of a base which commit is older (in terms of the
The comments above apply here as well. In addition s/applying
commits/rebasing commits/ for this command I think.
> + commit date) than the oldest commit you are applying (in
> + terms of the author date).
We should also warn against using this option when rearranging commits
with "git rebase -i" as well.
Thanks for working on this, it is a very good idea to add a warning to
the documentation for this option. I'm going to be off the list for the
next 10 days or so, I'll look at any re-roll when I return.
Thanks
Phillip
next prev parent reply other threads:[~2025-10-09 13:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-28 6:59 How dangerous is --committer-date-is-author-date these days? Johannes Sixt
2024-09-28 9:49 ` Phillip Wood
2024-09-28 10:04 ` Phillip Wood
2024-09-30 14:49 ` Kristoffer Haugsbakk
2024-09-30 17:08 ` Junio C Hamano
2025-10-08 20:41 ` SZEDER Gábor
2025-10-08 19:45 ` [PATCH] doc: warn against --committer-date-is-author-date kristofferhaugsbakk
2025-10-09 13:46 ` Phillip Wood [this message]
2025-10-09 14:31 ` Kristoffer Haugsbakk
2025-10-09 20:47 ` Kristoffer Haugsbakk
2025-10-09 21:58 ` Junio C Hamano
2025-10-09 22:56 ` Kristoffer Haugsbakk
2025-10-09 21:41 ` Junio C Hamano
2025-10-09 21:57 ` Kristoffer Haugsbakk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3a8dfd13-982d-4c83-b675-1e9a63bb6ab0@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=code@khaugsbakk.name \
--cc=git@vger.kernel.org \
--cc=j6t@kdbg.org \
--cc=kristofferhaugsbakk@fastmail.com \
--cc=phillip.wood@dunelm.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).