]> git.ipfire.org Git - thirdparty/git.git/commitdiff
docs: fix --commit-list-format related entries
authorMirko Faina <mroik@delayed.space>
Fri, 27 Mar 2026 19:48:09 +0000 (20:48 +0100)
committerJunio C Hamano <gitster@pobox.com>
Fri, 27 Mar 2026 20:09:50 +0000 (13:09 -0700)
Documentation specifies that "git format-patch" would default to
format.commitListFormat if --commit-list-format is not given, but
doesn't specify the default if the format.commitListFormat is not set.
The text for --cover-letter is also obsolete as the commit list can now
be something other than a shortlog.

Document to reflect changes.

Signed-off-by: Mirko Faina <mroik@delayed.space>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/format.adoc
Documentation/git-format-patch.adoc

index ef1ed1d2507fcf3b57cf3ece7017c4212cefd31c..dbd186290b501f9804550d093827f54ce4c04c69 100644 (file)
@@ -103,7 +103,7 @@ format.coverLetter::
 
 format.commitListFormat::
        When the `--cover-letter-format` option is not given, `format-patch`
-       uses the value of this variable to decide how to format the title of
+       uses the value of this variable to decide how to format the entry of
        each commit. Defaults to `shortlog`.
 
 format.outputDirectory::
index c52dbcc170548f5b684fe5be7aba086e05549d8d..cbbb292cb50313abebab5a9ab450b42bdcf4d715 100644 (file)
@@ -319,21 +319,21 @@ feeding the result to `git send-email`.
 
 --cover-letter::
 --no-cover-letter::
-       In addition to the patches, generate a cover letter file
-       containing the branch description, shortlog and the overall diffstat.  You can
-       fill in a description in the file before sending it out.
+       In addition to the patches, generate a cover letter file containing the
+       branch description, commit list and the overall diffstat.  You can fill
+       in a description in the file before sending it out.
 
 --commit-list-format=<format-spec>::
        Specify the format in which to generate the commit list of the patch
-       series. The accepted values for format-spec are `shortlog`, `modern` or a
-       format-string prefixed with `log:`.
-       e.g. `log: %s (%an)`
-       The user is allowed to drop the prefix if the format-string contains a
-       `%<placeholder>`.
-       If not given, defaults to the `format.commitListFormat` configuration
-       variable.
-       This option implies the use of `--cover-letter` unless
-       `--no-cover-letter` is given.
+       series. The accepted values for format-spec are `shortlog`, `modern` or
+       a format-string prefixed with `log:`. E.g. `log: %s (%an)`.
+       `modern` is the same as `log:[%(count)/%(total)] %s`.
+       The `log:` prefix can be omitted if the format-string has a `%` in it
+       (expecting that it is part of `%<placeholder>`).
+       Defaults to the `format.commitListFormat` configuration variable, if
+       set, or `shortlog`.
+       This option given from the command-line implies the use of
+       `--cover-letter` unless `--no-cover-letter` is given.
 
 --encode-email-headers::
 --no-encode-email-headers::