diff options
author | Adam Roben <aroben@apple.com> | 2007-06-26 15:48:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-06-26 22:22:06 -0700 |
commit | e46f7a0e1c641cd80affd80516677f1e370cd72c (patch) | |
tree | 57dac5bcb44df592fb2258dd7f18ce1c48354866 /Documentation/git-send-email.txt | |
parent | Don't ignore a pack-refs write failure (diff) | |
download | tgif-e46f7a0e1c641cd80affd80516677f1e370cd72c.tar.xz |
git-send-email: Add --threaded option
The --threaded option controls whether the In-Reply-To header will be set on
any emails sent. The current behavior is to always set this header, so this
option is most useful in its negated form, --no-threaded. This behavior can
also be controlled through the 'sendemail.threaded' config setting.
Signed-off-by: Adam Roben <aroben@apple.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-send-email.txt')
-rw-r--r-- | Documentation/git-send-email.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt index 946bd76afc..1f5d57d42f 100644 --- a/Documentation/git-send-email.txt +++ b/Documentation/git-send-email.txt @@ -86,6 +86,13 @@ The --cc option must be repeated for each user you want on the cc list. Do not add the From: address to the cc: list, if it shows up in a From: line. +--threaded, --no-threaded:: + If this is set, the In-Reply-To header will be set on each email sent. + If disabled with "--no-threaded", no emails will have the In-Reply-To + header set. + Default is the value of the 'sendemail.threaded' configuration value; + if that is unspecified, default to --threaded. + --dry-run:: Do everything except actually send the emails. |