diff options
author | Brian Gernhardt <benji@silverinsanity.com> | 2007-11-03 23:38:24 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-04 01:26:30 -0800 |
commit | 49604a4d62d9055dbfc06472e7ef20d8a6114123 (patch) | |
tree | 04184f6985f3b22bab7f22fe96d25b23e5dee4ce /Documentation/git-format-patch.txt | |
parent | 140dd77a5cb2e61dcb942e245a2474fae95e42a5 (diff) | |
download | git-49604a4d62d9055dbfc06472e7ef20d8a6114123.tar.gz git-49604a4d62d9055dbfc06472e7ef20d8a6114123.tar.xz |
format-patch: Add configuration and off switch for --numbered
format.numbered is a tri-state variable. Boolean values enable or
disable numbering by default and "auto" enables number when outputting
more than one patch.
--no-numbered (short: -N) will disable numbering.
Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-format-patch.txt')
-rw-r--r-- | Documentation/git-format-patch.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Documentation/git-format-patch.txt b/Documentation/git-format-patch.txt index f0617efa0..92c0ab63b 100644 --- a/Documentation/git-format-patch.txt +++ b/Documentation/git-format-patch.txt @@ -9,7 +9,7 @@ git-format-patch - Prepare patches for e-mail submission SYNOPSIS -------- [verse] -'git-format-patch' [-n | -k] [-o <dir> | --stdout] [--thread] +'git-format-patch' [-n | -N | -k] [-o <dir> | --stdout] [--thread] [--attach[=<boundary>] | --inline[=<boundary>]] [-s | --signoff] [<common diff options>] [--start-number <n>] [--numbered-files] @@ -77,6 +77,9 @@ include::diff-options.txt[] -n|--numbered:: Name output in '[PATCH n/m]' format. +-N|--no-numbered:: + Name output in '[PATCH]' format. + --start-number <n>:: Start numbering the patches at <n> instead of 1. @@ -142,15 +145,16 @@ not add any suffix. CONFIGURATION ------------- -You can specify extra mail header lines to be added to each -message in the repository configuration. You can also specify -new defaults for the subject prefix and file suffix. +You can specify extra mail header lines to be added to each message +in the repository configuration, new defaults for the subject prefix +and file suffix, and number patches when outputting more than one. ------------ [format] headers = "Organization: git-foo\n" subjectprefix = CHANGE suffix = .txt + numbered = auto ------------ |