From: Catalin Marinas Date: Fri, 5 Feb 2010 13:45:00 +0000 (+0000) Subject: Pass the --in-reply-to and --no-thread options to git send-email X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/commitdiff_plain/35112e505fff1c37f9261313060c730c47ab47c8 Pass the --in-reply-to and --no-thread options to git send-email Signed-off-by: Catalin Marinas --- diff --git a/stgit/commands/mail.py b/stgit/commands/mail.py index e479e92..e1de847 100644 --- a/stgit/commands/mail.py +++ b/stgit/commands/mail.py @@ -241,6 +241,10 @@ def __send_message_git(msg, options): cmd.append("--suppress-cc=self") if not options.auto: cmd.append("--suppress-cc=body") + if options.in_reply_to: + cmd.extend(["--in-reply-to", options.in_reply_to]) + if options.no_thread: + cmd.append("--no-thread") # We only support To/Cc/Bcc in git send-email for now. for x in ['to', 'cc', 'bcc']: