From: Phillip Wood <phillip.wood123@gmail.com>
To: Mirko Faina <mroik@delayed.space>, git@vger.kernel.org
Cc: Junio C Hamano <gitster@pobox.com>, Jeff King <peff@peff.net>
Subject: Re: [PATCH v7 3/5] format-patch: add ability to use alt cover format
Date: Tue, 10 Mar 2026 14:33:46 +0000 [thread overview]
Message-ID: <8f49d551-9741-4461-b076-3caba75e6122@gmail.com> (raw)
In-Reply-To: <316c9e76ee49d73aff75b63299c970e9f55f79b6.1772839973.git.mroik@delayed.space>
On 06/03/2026 23:34, Mirko Faina wrote:
> Often when sending patch series there's a need to clarify to the
> reviewer what's the purpose of said series, since it might be difficult
> to understand it from reading the commits messages one by one.
>
> "git format-patch" provides the useful "--cover-letter" flag to declare
> if we want it to generate a template for us to use. By default it will
> generate a "git shortlog" of the changes, which developers find less
> useful than they'd like, mainly because the shortlog groups commits by
> author, and gives no obvious chronological order.
I think we probably care more about topological order for format-patch.
In practice that's the same as chronological order by commit date, but
it does not necessarily match chronological order by author date.
> Give format-patch the ability to specify an alternative format spec
> through the "--cover-letter-format" option. This option either takes
> "shortlog", which is the current format, or a format spec prefixed with
> "log:".
That sounds like a nice improvement over using the shortlog output.
However it is rather cumbersome to have to type "log:" each time. As
--cover-letter-format=shortlog is a nonsensical format I don't think we
need to require the "log:" prefix. --no-cover-letter-format should
behave like --cover-letter-format=shortlog.
> Example:
> git format-patch --cover-letter \
> --cover-letter-format="log:[%(count)/%(total)] %s (%an)" HEAD~3
>
> [1/3] this is a commit summary (Mirko Faina)
> [2/3] this is another commit summary (Mirko Faina)
> ...
>
> Signed-off-by: Mirko Faina <mroik@delayed.space>
> ---
> builtin/log.c | 40 +++++++++++++++++++++++++++++++---
> t/t4014-format-patch.sh | 48 +++++++++++++++++++++++++++++++++++++++++
> t/t9902-completion.sh | 1 +
> 3 files changed, 86 insertions(+), 3 deletions(-)
>
> diff --git a/builtin/log.c b/builtin/log.c
> index 0d12272031..95e5d9755f 100644
> --- a/builtin/log.c
> +++ b/builtin/log.c
> @@ -1343,13 +1343,36 @@ static void generate_shortlog_cover_letter(struct shortlog *log,
> shortlog_output(log);
> }
>
> +static void generate_commit_list_cover(FILE *cover_file, const char *format,
> + struct commit **list, int n)
> +{
> + struct strbuf commit_line = STRBUF_INIT;
> + struct pretty_print_context ctx = {0};
> + struct rev_info rev = REV_INFO_INIT;
> +
> + strbuf_init(&commit_line, 0);
This is unnecessary as commit_line is initialized in the declaration above.
> + rev.total = n;
> + ctx.rev = &rev;
> + for (int i = n - 1; i >= 0; i--) {
> + rev.nr = n - i;
> + repo_format_commit_message(the_repository, list[i], format,
> + &commit_line, &ctx);
This loop is a bit confusing, I wonder if it would be simpler to count up
for (int i = 1; i <= n; i++) {
rev.nr = i
repo_format_commit_message(the_repository, list[n - i], ...);
The shortlog sets some wrapping and indent options, do we want to do
something similar here?
> @@ -2297,6 +2328,7 @@ int cmd_format_patch(int argc,
> /* nothing to do */
> goto done;
> total = list.nr;
> +
Please don't mix unrelated whitespace changes in with your changes.
> if (cover_letter == -1) {
> if (cfg.config_cover_letter == COVER_AUTO)
> cover_letter = (total > 1);
> @@ -2383,12 +2415,14 @@ int cmd_format_patch(int argc,
> }
> rev.numbered_files = just_numbers;
> rev.patch_suffix = fmt_patch_suffix;
> +
The same here
> +test_expect_success 'cover letter with subject, author and count' '
> + rm -rf patches &&
> + test_when_finished "git reset --hard HEAD~1" &&
> + test_when_finished "rm -rf patches result test_file" &&
> + touch test_file &&
> + git add test_file &&
> + git commit -m "This is a subject" &&
> + git format-patch --cover-letter \
> + --cover-letter-format="log:[%(count)/%(total)] %s (%an)" -o patches HEAD~1 &&
> + grep "^\[1/1\] This is a subject (A U Thor)$" patches/0000-cover-letter.patch >result &&
using test_grep here would make it easier to debug test failures.
> + test_line_count = 1 result
> +'
> +
> +test_expected_success 'cover letter with author and count' '
> + test_when_finished "git reset --hard HEAD~1" &&
> + test_when_finished "rm -rf patches result test_file" &&
> + touch test_file &&
> + git add test_file &&
> + git commit -m "This is a subject" &&
> + git format-patch --cover-letter \
> + --cover-letter-format="log:[%(count)/%(total)] %an" -o patches HEAD~1 &&
> + grep "^\[1/1\] A U Thor$" patches/0000-cover-letter.patch >result &&
I'm not clear what new coverage this test adds
> + test_line_count = 1 result
> +'
> +
> +test_expect_success 'cover letter shortlog' '
> + test_when_finished "git reset --hard HEAD~1" &&
> + test_when_finished "rm -rf patches result test_file" &&
> + touch test_file &&
> + git add test_file &&
> + git commit -m "This is a subject" &&
> + git format-patch --cover-letter --cover-letter-format=shortlog \
> + -o patches HEAD~1 &&
> + sed -n -e "/^A U Thor/p;" patches/0000-cover-letter.patch >result &&
This just checks that the author name appears in the coverletter, not
that the patches are formatted with shortlog.
> + test_line_count = 1 result
> +'
> +
> +test_expect_success 'cover letter no format' '
> + test_when_finished "git reset --hard HEAD~1" &&
> + test_when_finished "rm -rf patches result test_file" &&
> + touch test_file &&
> + git add test_file &&
> + git commit -m "This is a subject" &&
> + git format-patch --cover-letter -o patches HEAD~1 &&
> + sed -n -e "/^A U Thor/p;" patches/0000-cover-letter.patch >result &&
Don't we already have test coverage for the case where
--cover-letter-format isn't given? Testing that --no-cover-letter-format
works as expected would be useful.
I think this is a useful improvement to the cover letter generated by
"git format-patch"
Thanks
Phillip
> + test_line_count = 1 result
> +'
> +
> test_expect_success 'reroll count' '
> rm -fr patches &&
> git format-patch -o patches --cover-letter --reroll-count 4 main..side >list &&
> diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh
> index 964e1f1569..4f760a7468 100755
> --- a/t/t9902-completion.sh
> +++ b/t/t9902-completion.sh
> @@ -2774,6 +2774,7 @@ test_expect_success PERL 'send-email' '
> test_completion "git send-email --cov" <<-\EOF &&
> --cover-from-description=Z
> --cover-letter Z
> + --cover-letter-format=Z
> EOF
> test_completion "git send-email --val" <<-\EOF &&
> --validate Z
next prev parent reply other threads:[~2026-03-10 14:33 UTC|newest]
Thread overview: 113+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-20 23:06 [RFC PATCH] format-patch: better commit list for cover letter Mirko Faina
2026-02-20 23:55 ` [RFC PATCH v2] " Mirko Faina
2026-02-21 0:51 ` Mirko Faina
2026-02-21 4:54 ` [RFC PATCH] " Junio C Hamano
2026-02-21 5:18 ` Mirko Faina
2026-02-21 5:55 ` Junio C Hamano
2026-02-21 6:02 ` Junio C Hamano
2026-02-21 15:59 ` Mirko Faina
2026-02-21 17:33 ` Junio C Hamano
2026-02-21 19:16 ` Mirko Faina
2026-02-24 4:03 ` [PATCH 0/3] format-patch: add cover-letter-format option Mirko Faina
2026-02-24 4:06 ` Mirko Faina
2026-02-24 9:29 ` [PATCH v2 0/2] " Mirko Faina
2026-02-24 9:29 ` [PATCH v2 1/2] format-patch: add ability to use alt cover format Mirko Faina
2026-02-24 17:40 ` Junio C Hamano
2026-02-24 23:54 ` Mirko Faina
2026-02-25 0:29 ` Junio C Hamano
2026-02-25 13:47 ` Jeff King
2026-02-24 20:25 ` Junio C Hamano
2026-02-25 13:56 ` Jeff King
2026-02-25 22:55 ` Mirko Faina
2026-02-24 9:29 ` [PATCH v2 2/2] format-patch: add commitListFormat config Mirko Faina
2026-02-24 18:07 ` Junio C Hamano
2026-02-25 0:14 ` Mirko Faina
2026-02-25 17:25 ` Junio C Hamano
2026-02-26 21:40 ` Mirko Faina
2026-02-26 22:19 ` Junio C Hamano
2026-02-24 20:38 ` [PATCH v2 0/2] format-patch: add cover-letter-format option Junio C Hamano
2026-02-24 21:39 ` Junio C Hamano
2026-02-25 0:19 ` Mirko Faina
2026-02-25 2:46 ` Junio C Hamano
2026-02-27 1:52 ` [PATCH v3 0/4] " Mirko Faina
2026-02-27 1:52 ` [PATCH v3 1/4] pretty.c: add %(count) and %(total) placeholders Mirko Faina
2026-02-27 1:52 ` [PATCH v3 2/4] format-patch: move cover letter summary generation Mirko Faina
2026-02-27 1:52 ` [PATCH v3 3/4] format-patch: add ability to use alt cover format Mirko Faina
2026-02-27 4:23 ` Junio C Hamano
2026-02-27 12:41 ` Mirko Faina
2026-02-27 1:52 ` [PATCH v3 4/4] format-patch: add commitListFormat config Mirko Faina
2026-02-27 13:18 ` [PATCH v4 0/4] format-patch: add cover-letter-format option Mirko Faina
2026-02-27 13:18 ` [PATCH v4 1/4] pretty.c: add %(count) and %(total) placeholders Mirko Faina
2026-02-27 13:18 ` [PATCH v4 2/4] format-patch: move cover letter summary generation Mirko Faina
2026-02-27 13:18 ` [PATCH v4 3/4] format-patch: add ability to use alt cover format Mirko Faina
2026-02-27 13:18 ` [PATCH v4 4/4] format-patch: add commitListFormat config Mirko Faina
2026-02-27 16:42 ` [PATCH v4 5/4] docs: add usage for the cover-letter fmt feature Mirko Faina
2026-02-27 17:51 ` [PATCH v4 4/4] format-patch: add commitListFormat config Junio C Hamano
2026-02-27 21:51 ` Mirko Faina
2026-02-27 22:21 ` Junio C Hamano
2026-02-27 22:48 ` [PATCH v5 0/5] format-patch: add cover-letter-format option Mirko Faina
2026-02-27 22:48 ` [PATCH v5 1/5] pretty.c: add %(count) and %(total) placeholders Mirko Faina
2026-02-27 22:48 ` [PATCH v5 2/5] format-patch: move cover letter summary generation Mirko Faina
2026-02-27 22:48 ` [PATCH v5 3/5] format-patch: add ability to use alt cover format Mirko Faina
2026-02-27 22:48 ` [PATCH v5 4/5] format-patch: add commitListFormat config Mirko Faina
2026-02-27 22:48 ` [PATCH v5 5/5] docs: add usage for the cover-letter fmt feature Mirko Faina
2026-03-06 22:33 ` [PATCH v5 0/5] format-patch: add cover-letter-format option Junio C Hamano
2026-03-06 22:49 ` Mirko Faina
2026-03-06 22:58 ` [PATCH v6 " Mirko Faina
2026-03-06 22:58 ` [PATCH v6 1/5] pretty.c: add %(count) and %(total) placeholders Mirko Faina
2026-03-06 22:58 ` [PATCH v6 2/5] format-patch: move cover letter summary generation Mirko Faina
2026-03-06 22:58 ` [PATCH v6 3/5] format-patch: add ability to use alt cover format Mirko Faina
2026-03-10 22:14 ` Junio C Hamano
2026-03-10 22:32 ` Mirko Faina
2026-03-06 22:58 ` [PATCH v6 4/5] format-patch: add commitListFormat config Mirko Faina
2026-03-06 22:58 ` [PATCH v6 5/5] docs: add usage for the cover-letter fmt feature Mirko Faina
2026-03-06 23:18 ` Junio C Hamano
2026-03-06 23:34 ` [PATCH v7 0/5] format-patch: add cover-letter-format option Mirko Faina
2026-03-06 23:34 ` [PATCH v7 1/5] pretty.c: add %(count) and %(total) placeholders Mirko Faina
2026-03-10 14:32 ` Phillip Wood
2026-03-10 20:55 ` Mirko Faina
2026-03-06 23:34 ` [PATCH v7 2/5] format-patch: move cover letter summary generation Mirko Faina
2026-03-06 23:34 ` [PATCH v7 3/5] format-patch: add ability to use alt cover format Mirko Faina
2026-03-10 14:33 ` Phillip Wood [this message]
2026-03-10 21:05 ` Mroik
2026-03-06 23:34 ` [PATCH v7 4/5] format-patch: add commitListFormat config Mirko Faina
2026-03-10 14:34 ` Phillip Wood
2026-03-10 16:45 ` Junio C Hamano
2026-03-10 21:23 ` Mirko Faina
2026-03-11 10:38 ` Phillip Wood
2026-03-11 17:13 ` Junio C Hamano
2026-03-11 10:32 ` Phillip Wood
2026-03-11 17:18 ` Junio C Hamano
2026-03-10 21:19 ` Mirko Faina
2026-03-06 23:34 ` [PATCH v7 5/5] docs: add usage for the cover-letter fmt feature Mirko Faina
2026-03-10 9:51 ` Bert Wesarg
2026-03-10 14:34 ` Phillip Wood
2026-03-12 16:20 ` [PATCH v8 0/4] format-patch: add cover-letter-format option Mirko Faina
2026-03-12 16:20 ` [PATCH v8 1/4] format-patch: move cover letter summary generation Mirko Faina
2026-03-12 16:28 ` Junio C Hamano
2026-03-12 16:20 ` [PATCH v8 2/4] format-patch: add ability to use alt cover format Mirko Faina
2026-03-12 16:52 ` Junio C Hamano
2026-03-12 17:18 ` Mirko Faina
2026-03-12 17:25 ` Junio C Hamano
2026-03-12 17:27 ` Junio C Hamano
2026-03-13 10:38 ` Phillip Wood
2026-03-13 17:20 ` Junio C Hamano
2026-03-13 19:17 ` Mirko Faina
2026-03-13 20:22 ` Junio C Hamano
2026-03-12 16:20 ` [PATCH v8 3/4] format-patch: add "chronological" format for cover Mirko Faina
2026-03-12 16:55 ` Junio C Hamano
2026-03-12 16:20 ` [PATCH v8 4/4] format-patch: add commitListFormat config Mirko Faina
2026-03-12 17:00 ` Junio C Hamano
2026-03-12 17:20 ` [PATCH v8 0/4] format-patch: add cover-letter-format option Junio C Hamano
2026-03-12 17:45 ` Mirko Faina
2026-03-12 18:12 ` Junio C Hamano
2026-02-24 4:03 ` [PATCH 1/3] pretty.c: fix null pointer dereference Mirko Faina
2026-02-24 6:25 ` Junio C Hamano
2026-02-24 7:08 ` Mirko Faina
2026-02-24 7:43 ` Mirko Faina
2026-02-24 8:41 ` Jeff King
2026-02-24 4:03 ` [PATCH 2/3] format-patch: add ability to use alt cover format Mirko Faina
2026-02-24 9:02 ` Jeff King
2026-02-24 9:09 ` Mirko Faina
2026-02-24 9:18 ` Jeff King
2026-02-24 4:03 ` [PATCH 3/3] format-patch: add commitListFormat config Mirko Faina
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=8f49d551-9741-4461-b076-3caba75e6122@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=mroik@delayed.space \
--cc=peff@peff.net \
--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