summaryrefslogtreecommitdiffstats
path: root/git-format-patch.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-07-25 22:23:09 +0000
committerJunio C Hamano <junio@hera.kernel.org>2006-07-25 22:23:09 +0000
commitf9ca97d6b6efc644961bdfb77047b162bca91919 (patch)
treebbdfa61a61bce72d64020b4589696ee2f63e077b /git-format-patch.txt
parent28d9dfeb55d72e3676d8e339c049d7d7ffaf9312 (diff)
downloadgit-htmldocs-f9ca97d6b6efc644961bdfb77047b162bca91919.tar.gz
Autogenerated HTML docs for v1.4.2-rc2
Diffstat (limited to 'git-format-patch.txt')
-rw-r--r--git-format-patch.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/git-format-patch.txt b/git-format-patch.txt
index 4ca0014da..67425dc03 100644
--- a/git-format-patch.txt
+++ b/git-format-patch.txt
@@ -9,8 +9,9 @@ git-format-patch - Prepare patches for e-mail submission
SYNOPSIS
--------
[verse]
-'git-format-patch' [-n | -k] [-o <dir> | --stdout] [--attach]
+'git-format-patch' [-n | -k] [-o <dir> | --stdout] [--attach] [--thread]
[-s | --signoff] [--diff-options] [--start-number <n>]
+ [--in-reply-to=Message-Id]
<since>[..<until>]
DESCRIPTION
@@ -35,6 +36,10 @@ they are created in the current working directory.
If -n is specified, instead of "[PATCH] Subject", the first line
is formatted as "[PATCH n/m] Subject".
+If given --thread, git-format-patch will generate In-Reply-To and
+References headers to make the second and subsequent patch mails appear
+as replies to the first mail; this also generates a Message-Id header to
+reference.
OPTIONS
-------
@@ -63,6 +68,15 @@ OPTIONS
--attach::
Create attachments instead of inlining patches.
+--thread::
+ Add In-Reply-To and References headers to make the second and
+ subsequent mails appear as replies to the first. Also generates
+ the Message-Id header to reference.
+
+--in-reply-to=Message-Id::
+ Make the first mail (or all the mails with --no-thread) appear as a
+ reply to the given Message-Id, which avoids breaking threads to
+ provide a new patch series.
CONFIGURATION
-------------