diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-01-02 14:19:05 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-03 16:05:44 -0800 |
commit | 7952ea66e72d1129afbebcdde11dcbeecd92698a (patch) | |
tree | 1db0ad40259ec39c8f85ba4a20a394f64fb60201 /Documentation/git-format-patch.txt | |
parent | 4aad08e061df699b49e24c4d34698d734473fb66 (diff) | |
download | git-7952ea66e72d1129afbebcdde11dcbeecd92698a.tar.gz |
format-patch: give --reroll-count a short synonym -v
Accept "-v" as a synonym to "--reroll-count", so that users can say
"git format-patch -v4 master", instead of having to fully spell it
out as "git format-patch --reroll-count=4 master".
As I do not think of a reason why users would want to tell the
command to be "verbose", I think this should be OK.
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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-format-patch.txt b/Documentation/git-format-patch.txt index 736d8bf887..ae3212e8d8 100644 --- a/Documentation/git-format-patch.txt +++ b/Documentation/git-format-patch.txt @@ -18,7 +18,7 @@ SYNOPSIS [--start-number <n>] [--numbered-files] [--in-reply-to=Message-Id] [--suffix=.<sfx>] [--ignore-if-in-upstream] - [--subject-prefix=Subject-Prefix] [--reroll-count <n>] + [--subject-prefix=Subject-Prefix] [(--reroll-count|-v) <n>] [--to=<email>] [--cc=<email>] [--cover-letter] [--quiet] [<common diff options>] @@ -166,6 +166,7 @@ will want to ensure that threading is disabled for `git send-email`. allows for useful naming of a patch series, and can be combined with the `--numbered` option. +-v <n>:: --reroll-count=<n>:: Mark the series as the <n>-th iteration of the topic. The output filenames have `v<n>` pretended to them, and the |