aboutsummaryrefslogtreecommitdiff
path: root/Documentation/git-format-patch.adoc
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-04-03 13:01:08 -0700
committerJunio C Hamano <gitster@pobox.com>2026-04-03 13:01:08 -0700
commit63901789bc05e51437442c9283e3716bfadb5b1c (patch)
tree62a425fdbf4e214df0fb9666437559253e5ef32f /Documentation/git-format-patch.adoc
parent256554692df0685b45e60778b08802b720880c50 (diff)
parent51ed9f7e724468b8e44a7c33946dda38a335acca (diff)
downloadgit-63901789bc05e51437442c9283e3716bfadb5b1c.tar.xz
Merge branch 'mf/format-patch-cover-letter-format'
"git format-patch --cover-letter" learns to use a simpler format instead of the traditional shortlog format to list its commits with a new --cover-letter-format option and format.commitListFormat configuration variable. * mf/format-patch-cover-letter-format: docs: add usage for the cover-letter fmt feature format-patch: add commitListFormat config format-patch: add ability to use alt cover format format-patch: move cover letter summary generation pretty.c: add %(count) and %(total) placeholders
Diffstat (limited to 'Documentation/git-format-patch.adoc')
-rw-r--r--Documentation/git-format-patch.adoc13
1 files changed, 13 insertions, 0 deletions
diff --git a/Documentation/git-format-patch.adoc b/Documentation/git-format-patch.adoc
index 36146006fa..31fa492335 100644
--- a/Documentation/git-format-patch.adoc
+++ b/Documentation/git-format-patch.adoc
@@ -24,6 +24,7 @@ SYNOPSIS
[(--reroll-count|-v) <n>]
[--to=<email>] [--cc=<email>]
[--[no-]cover-letter] [--quiet]
+ [--cover-letter-format=<format-spec>]
[--[no-]encode-email-headers]
[--no-notes | --notes[=<ref>]]
[--interdiff=<previous>]
@@ -322,6 +323,17 @@ feeding the result to `git send-email`.
containing the branch description, shortlog and the overall diffstat. You can
fill in a description in the file before sending it out.
+--cover-letter-format=<format-spec>::
+ Specify the format in which to generate the commit list of the
+ patch series. This option is available if the user wants to use
+ an alternative to the default `shortlog` format. The accepted
+ values for format-spec are "shortlog" or a format string
+ prefixed with `log:`.
+ e.g. `log: %s (%an)`
+ If defined, defaults to the `format.commitListFormat` configuration
+ variable.
+ This option is relevant only if a cover letter is generated.
+
--encode-email-headers::
--no-encode-email-headers::
Encode email headers that have non-ASCII characters with
@@ -453,6 +465,7 @@ with configuration variables.
signOff = true
outputDirectory = <directory>
coverLetter = auto
+ commitListFormat = shortlog
coverFromDescription = auto
------------