diff options
author | Laura Abbott <labbott@redhat.com> | 2018-12-12 14:32:27 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-07 15:29:34 -0800 |
commit | 1eadaa3978fb8f9e9d062379fc95a65fb5ff6f8b (patch) | |
tree | 31a87b32659c3b405a8f44807209ff80597711ab /Documentation/git-quiltimport.txt | |
parent | 5d826e972970a784bd7a7bdf587512510097b8c7 (diff) | |
download | git-1eadaa3978fb8f9e9d062379fc95a65fb5ff6f8b.tar.gz |
git-quiltimport: add --keep-non-patch option
git-am has the --keep-non-patch option to pass -b to
git-mailinfo for keeping subject prefixes intact. Allow
this option to be used with quiltimport as well.
Signed-off-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-quiltimport.txt')
-rw-r--r-- | Documentation/git-quiltimport.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-quiltimport.txt b/Documentation/git-quiltimport.txt index 8cf952b4de..70562dc4c0 100644 --- a/Documentation/git-quiltimport.txt +++ b/Documentation/git-quiltimport.txt @@ -10,7 +10,7 @@ SYNOPSIS -------- [verse] 'git quiltimport' [--dry-run | -n] [--author <author>] [--patches <dir>] - [--series <file>] + [--series <file>] [--keep-non-patch] DESCRIPTION @@ -56,6 +56,9 @@ The default for the series file is <patches>/series or the value of the `$QUILT_SERIES` environment variable. +--keep-non-patch:: + Pass `-b` flag to 'git mailinfo' (see linkgit:git-mailinfo[1]). + GIT --- Part of the linkgit:git[1] suite |