2005-09-08 02:26:23 +02:00
|
|
|
git-send-email(1)
|
|
|
|
=================
|
2005-07-31 10:17:25 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-send-email - Send a collection of patches as emails
|
2005-07-31 10:17:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-09-08 02:26:23 +02:00
|
|
|
'git-send-email' [options] <file|directory> [... file|directory]
|
2005-07-31 10:17:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Takes the patches given on the command line and emails them out.
|
|
|
|
|
|
|
|
The header of the email is configurable by command line options. If not
|
|
|
|
specified on the command line, the user will be prompted with a ReadLine
|
|
|
|
enabled interface to provide the necessary information.
|
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-07-31 10:17:25 +02:00
|
|
|
The options available are:
|
|
|
|
|
2006-06-21 15:17:31 +02:00
|
|
|
--bcc::
|
|
|
|
Specify a "Bcc:" value for each email.
|
2007-03-01 20:41:16 +01:00
|
|
|
+
|
|
|
|
The --bcc option must be repeated for each user you want on the bcc list.
|
2006-06-21 15:17:31 +02:00
|
|
|
|
2006-02-13 09:05:15 +01:00
|
|
|
--cc::
|
|
|
|
Specify a starting "Cc:" value for each email.
|
2007-03-01 20:41:16 +01:00
|
|
|
+
|
|
|
|
The --cc option must be repeated for each user you want on the cc list.
|
2006-06-21 15:17:31 +02:00
|
|
|
|
2006-02-06 02:13:52 +01:00
|
|
|
--chain-reply-to, --no-chain-reply-to::
|
|
|
|
If this is set, each email will be sent as a reply to the previous
|
|
|
|
email sent. If disabled with "--no-chain-reply-to", all emails after
|
|
|
|
the first will be sent as replies to the first email sent. When using
|
|
|
|
this, it is recommended that the first file given be an overview of the
|
|
|
|
entire patch series.
|
2007-03-11 18:19:44 +01:00
|
|
|
Default is the value of the 'sendemail.chainreplyto' configuration
|
|
|
|
value; if that is unspecified, default to --chain-reply-to.
|
2006-02-06 02:13:52 +01:00
|
|
|
|
|
|
|
--compose::
|
|
|
|
Use $EDITOR to edit an introductory message for the
|
|
|
|
patch series.
|
2005-07-31 10:17:25 +02:00
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
--from::
|
2005-07-31 10:17:25 +02:00
|
|
|
Specify the sender of the emails. This will default to
|
|
|
|
the value GIT_COMMITTER_IDENT, as returned by "git-var -l".
|
|
|
|
The user will still be prompted to confirm this entry.
|
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
--in-reply-to::
|
2005-07-31 10:17:25 +02:00
|
|
|
Specify the contents of the first In-Reply-To header.
|
|
|
|
Subsequent emails will refer to the previous email
|
2005-09-05 07:13:07 +02:00
|
|
|
instead of this if --chain-reply-to is set (the default)
|
|
|
|
Only necessary if --compose is also set. If --compose
|
|
|
|
is not set, this will be prompted for.
|
2005-07-31 10:17:25 +02:00
|
|
|
|
2006-02-13 08:57:09 +01:00
|
|
|
--no-signed-off-by-cc::
|
2007-03-19 02:37:53 +01:00
|
|
|
Do not add emails found in Signed-off-by: or Cc: lines to the
|
|
|
|
cc list.
|
2006-02-13 08:57:09 +01:00
|
|
|
|
2006-02-06 02:13:52 +01:00
|
|
|
--quiet::
|
|
|
|
Make git-send-email less verbose. One line per email should be
|
|
|
|
all that is output.
|
2005-08-03 03:45:22 +02:00
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
--smtp-server::
|
2006-10-29 20:31:38 +01:00
|
|
|
If set, specifies the outgoing SMTP server to use. A full
|
|
|
|
pathname of a sendmail-like program can be specified instead;
|
2006-10-29 20:31:39 +01:00
|
|
|
the program must support the `-i` option. Default value can
|
|
|
|
be specified by the 'sendemail.smtpserver' configuration
|
|
|
|
option; the built-in default is `/usr/sbin/sendmail` or
|
|
|
|
`/usr/lib/sendmail` if such program is available, or
|
|
|
|
`localhost` otherwise.
|
2005-08-03 03:45:22 +02:00
|
|
|
|
2006-02-06 02:13:52 +01:00
|
|
|
--subject::
|
|
|
|
Specify the initial subject of the email thread.
|
|
|
|
Only necessary if --compose is also set. If --compose
|
|
|
|
is not set, this will be prompted for.
|
|
|
|
|
2006-02-13 08:57:09 +01:00
|
|
|
--suppress-from::
|
|
|
|
Do not add the From: address to the cc: list, if it shows up in a From:
|
|
|
|
line.
|
|
|
|
|
2007-04-26 04:37:23 +02:00
|
|
|
--dry-run::
|
|
|
|
Do everything except actually send the emails.
|
|
|
|
|
|
|
|
--envelope-sender::
|
|
|
|
Specify the envelope sender used to send the emails.
|
|
|
|
This is useful if your default address is not the address that is
|
|
|
|
subscribed to a list. If you use the sendmail binary, you must have
|
|
|
|
suitable privileges for the -f parameter.
|
|
|
|
|
2006-02-06 02:13:52 +01:00
|
|
|
--to::
|
|
|
|
Specify the primary recipient of the emails generated.
|
|
|
|
Generally, this will be the upstream maintainer of the
|
|
|
|
project involved.
|
2007-03-01 20:41:16 +01:00
|
|
|
+
|
|
|
|
The --to option must be repeated for each user you want on the to list.
|
2006-06-21 15:17:31 +02:00
|
|
|
|
2005-08-03 03:45:22 +02:00
|
|
|
|
2007-03-11 18:19:43 +01:00
|
|
|
CONFIGURATION
|
|
|
|
-------------
|
|
|
|
sendemail.aliasesfile::
|
|
|
|
To avoid typing long email addresses, point this to one or more
|
|
|
|
email aliases files. You must also supply 'sendemail.aliasfiletype'.
|
|
|
|
|
|
|
|
sendemail.aliasfiletype::
|
|
|
|
Format of the file(s) specified in sendemail.aliasesfile. Must be
|
|
|
|
one of 'mutt', 'mailrc', 'pine', or 'gnus'.
|
|
|
|
|
2007-03-11 18:19:44 +01:00
|
|
|
sendemail.bcc::
|
|
|
|
Email address (or alias) to always bcc.
|
|
|
|
|
|
|
|
sendemail.chainreplyto::
|
|
|
|
Boolean value specifying the default to the '--chain_reply_to'
|
|
|
|
parameter.
|
|
|
|
|
2007-03-11 18:19:43 +01:00
|
|
|
sendemail.smtpserver::
|
|
|
|
Default smtp server to use.
|
|
|
|
|
2005-07-31 10:17:25 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Ryan Anderson <ryan@michonline.com>
|
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
git-send-email is originally based upon
|
2005-07-31 10:17:25 +02:00
|
|
|
send_lots_of_email.pl by Greg Kroah-Hartman.
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Ryan Anderson
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-07-31 10:17:25 +02:00
|
|
|
|