]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-send-email.txt
git-merge: warn when -m provided on a fast forward
[thirdparty/git.git] / Documentation / git-send-email.txt
CommitLineData
215a7ad1
JH
1git-send-email(1)
2=================
479cec96
RA
3
4NAME
5----
215a7ad1 6git-send-email - Send a collection of patches as emails
479cec96
RA
7
8
9SYNOPSIS
10--------
215a7ad1 11'git-send-email' [options] <file|directory> [... file|directory]
479cec96
RA
12
13
14
15DESCRIPTION
16-----------
17Takes the patches given on the command line and emails them out.
18
19The header of the email is configurable by command line options. If not
20specified on the command line, the user will be prompted with a ReadLine
21enabled interface to provide the necessary information.
22
df8baa42
JF
23OPTIONS
24-------
479cec96
RA
25The options available are:
26
79ee555b
EB
27--bcc::
28 Specify a "Bcc:" value for each email.
5ef1f8d4
SV
29+
30The --bcc option must be repeated for each user you want on the bcc list.
79ee555b 31
da140f8b
RA
32--cc::
33 Specify a starting "Cc:" value for each email.
5ef1f8d4
SV
34+
35The --cc option must be repeated for each user you want on the cc list.
79ee555b 36
2718435b
RA
37--chain-reply-to, --no-chain-reply-to::
38 If this is set, each email will be sent as a reply to the previous
39 email sent. If disabled with "--no-chain-reply-to", all emails after
40 the first will be sent as replies to the first email sent. When using
41 this, it is recommended that the first file given be an overview of the
42 entire patch series.
43 Default is --chain-reply-to
44
45--compose::
46 Use $EDITOR to edit an introductory message for the
47 patch series.
479cec96 48
df8baa42 49--from::
479cec96
RA
50 Specify the sender of the emails. This will default to
51 the value GIT_COMMITTER_IDENT, as returned by "git-var -l".
52 The user will still be prompted to confirm this entry.
53
df8baa42 54--in-reply-to::
479cec96
RA
55 Specify the contents of the first In-Reply-To header.
56 Subsequent emails will refer to the previous email
f9e320c3
RA
57 instead of this if --chain-reply-to is set (the default)
58 Only necessary if --compose is also set. If --compose
59 is not set, this will be prompted for.
479cec96 60
a985d595 61--no-signed-off-by-cc::
abda1ef5 62 Do not add emails found in Signed-off-by: lines to the cc list.
a985d595 63
2718435b
RA
64--quiet::
65 Make git-send-email less verbose. One line per email should be
66 all that is output.
a6d62cdd 67
df8baa42 68--smtp-server::
9c572b21
SV
69 If set, specifies the outgoing SMTP server to use. A full
70 pathname of a sendmail-like program can be specified instead;
6dcfa306
SV
71 the program must support the `-i` option. Default value can
72 be specified by the 'sendemail.smtpserver' configuration
73 option; the built-in default is `/usr/sbin/sendmail` or
74 `/usr/lib/sendmail` if such program is available, or
75 `localhost` otherwise.
a6d62cdd 76
2718435b
RA
77--subject::
78 Specify the initial subject of the email thread.
79 Only necessary if --compose is also set. If --compose
80 is not set, this will be prompted for.
81
a985d595
RA
82--suppress-from::
83 Do not add the From: address to the cc: list, if it shows up in a From:
84 line.
85
2718435b
RA
86--to::
87 Specify the primary recipient of the emails generated.
88 Generally, this will be the upstream maintainer of the
89 project involved.
5ef1f8d4
SV
90+
91The --to option must be repeated for each user you want on the to list.
79ee555b 92
a6d62cdd 93
479cec96
RA
94Author
95------
96Written by Ryan Anderson <ryan@michonline.com>
97
215a7ad1 98git-send-email is originally based upon
479cec96
RA
99send_lots_of_email.pl by Greg Kroah-Hartman.
100
101Documentation
102--------------
103Documentation by Ryan Anderson
104
105GIT
106---
a7154e91 107Part of the gitlink:git[7] suite
479cec96 108