]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-am.txt
t/t4202-log.sh: Add testcases
[thirdparty/git.git] / Documentation / git-am.txt
1 git-am(1)
2 =========
3
4 NAME
5 ----
6 git-am - Apply a series of patches from a mailbox
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 'git am' [--signoff] [--keep] [--utf8 | --no-utf8]
13 [--3way] [--interactive]
14 [--whitespace=<option>] [-C<n>] [-p<n>] [--directory=<dir>]
15 [<mbox> | <Maildir>...]
16 'git am' (--skip | --resolved | --abort)
17
18 DESCRIPTION
19 -----------
20 Splits mail messages in a mailbox into commit log message,
21 authorship information and patches, and applies them to the
22 current branch.
23
24 OPTIONS
25 -------
26 <mbox>|<Maildir>...::
27 The list of mailbox files to read patches from. If you do not
28 supply this argument, reads from the standard input. If you supply
29 directories, they'll be treated as Maildirs.
30
31 -s::
32 --signoff::
33 Add `Signed-off-by:` line to the commit message, using
34 the committer identity of yourself.
35
36 -k::
37 --keep::
38 Pass `-k` flag to 'git-mailinfo' (see linkgit:git-mailinfo[1]).
39
40 -u::
41 --utf8::
42 Pass `-u` flag to 'git-mailinfo' (see linkgit:git-mailinfo[1]).
43 The proposed commit log message taken from the e-mail
44 is re-coded into UTF-8 encoding (configuration variable
45 `i18n.commitencoding` can be used to specify project's
46 preferred encoding if it is not UTF-8).
47 +
48 This was optional in prior versions of git, but now it is the
49 default. You could use `--no-utf8` to override this.
50
51 --no-utf8::
52 Pass `-n` flag to 'git-mailinfo' (see
53 linkgit:git-mailinfo[1]).
54
55 -3::
56 --3way::
57 When the patch does not apply cleanly, fall back on
58 3-way merge, if the patch records the identity of blobs
59 it is supposed to apply to, and we have those blobs
60 available locally.
61
62 --whitespace=<option>::
63 -C<n>::
64 -p<n>::
65 --directory=<dir>::
66 These flags are passed to the 'git-apply' (see linkgit:git-apply[1])
67 program that applies
68 the patch.
69
70 -i::
71 --interactive::
72 Run interactively.
73
74 --skip::
75 Skip the current patch. This is only meaningful when
76 restarting an aborted patch.
77
78 -r::
79 --resolved::
80 After a patch failure (e.g. attempting to apply
81 conflicting patch), the user has applied it by hand and
82 the index file stores the result of the application.
83 Make a commit using the authorship and commit log
84 extracted from the e-mail message and the current index
85 file, and continue.
86
87 --resolvemsg=<msg>::
88 When a patch failure occurs, <msg> will be printed
89 to the screen before exiting. This overrides the
90 standard message informing you to use `--resolved`
91 or `--skip` to handle the failure. This is solely
92 for internal use between 'git-rebase' and 'git-am'.
93
94 --abort::
95 Restore the original branch and abort the patching operation.
96
97 DISCUSSION
98 ----------
99
100 The commit author name is taken from the "From: " line of the
101 message, and commit author time is taken from the "Date: " line
102 of the message. The "Subject: " line is used as the title of
103 the commit, after stripping common prefix "[PATCH <anything>]".
104 It is supposed to describe what the commit is about concisely as
105 a one line text.
106
107 The body of the message (iow, after a blank line that terminates
108 RFC2822 headers) can begin with "Subject: " and "From: " lines
109 that are different from those of the mail header, to override
110 the values of these fields.
111
112 The commit message is formed by the title taken from the
113 "Subject: ", a blank line and the body of the message up to
114 where the patch begins. Excess whitespaces at the end of the
115 lines are automatically stripped.
116
117 The patch is expected to be inline, directly following the
118 message. Any line that is of form:
119
120 * three-dashes and end-of-line, or
121 * a line that begins with "diff -", or
122 * a line that begins with "Index: "
123
124 is taken as the beginning of a patch, and the commit log message
125 is terminated before the first occurrence of such a line.
126
127 When initially invoking it, you give it names of the mailboxes
128 to crunch. Upon seeing the first patch that does not apply, it
129 aborts in the middle,. You can recover from this in one of two ways:
130
131 . skip the current patch by re-running the command with '--skip'
132 option.
133
134 . hand resolve the conflict in the working directory, and update
135 the index file to bring it in a state that the patch should
136 have produced. Then run the command with '--resolved' option.
137
138 The command refuses to process new mailboxes while `.git/rebase-apply`
139 directory exists, so if you decide to start over from scratch,
140 run `rm -f -r .git/rebase-apply` before running the command with mailbox
141 names.
142
143 Before any patches are applied, ORIG_HEAD is set to the tip of the
144 current branch. This is useful if you have problems with multiple
145 commits, like running 'git am' on the wrong branch or an error in the
146 commits that is more easily fixed by changing the mailbox (e.g.
147 errors in the "From:" lines).
148
149
150 SEE ALSO
151 --------
152 linkgit:git-apply[1].
153
154
155 Author
156 ------
157 Written by Junio C Hamano <gitster@pobox.com>
158
159 Documentation
160 --------------
161 Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
162
163 GIT
164 ---
165 Part of the linkgit:git[1] suite