Cleanup xread() loops to use read_in_full()
[git/dscho.git] / Documentation / git-am.txt
blob2387a8d6c2472fa87136cd18c0a1145e4dc23bd2
1 git-am(1)
2 =========
4 NAME
5 ----
6 git-am - Apply a series of patches from a mailbox
9 SYNOPSIS
10 --------
11 [verse]
12 'git-am' [--signoff] [--keep] [--utf8 | --no-utf8]
13          [--3way] [--interactive] [--binary]
14          [--whitespace=<option>] [-C<n>] [-p<n>]
15          <mbox>|<Maildir>...
16 'git-am' [--skip | --resolved]
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.
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.
31 -s, --signoff::
32         Add `Signed-off-by:` line to the commit message, using
33         the committer identity of yourself.
35 -k, --keep::
36         Pass `-k` flag to `git-mailinfo` (see linkgit:git-mailinfo[1]).
38 -u, --utf8::
39         Pass `-u` flag to `git-mailinfo` (see linkgit:git-mailinfo[1]).
40         The proposed commit log message taken from the e-mail
41         is re-coded into UTF-8 encoding (configuration variable
42         `i18n.commitencoding` can be used to specify project's
43         preferred encoding if it is not UTF-8).
45 This was optional in prior versions of git, but now it is the
46 default.   You could use `--no-utf8` to override this.
48 --no-utf8::
49         Pass `-n` flag to `git-mailinfo` (see
50         linkgit:git-mailinfo[1]).
52 -3, --3way::
53         When the patch does not apply cleanly, fall back on
54         3-way merge, if the patch records the identity of blobs
55         it is supposed to apply to, and we have those blobs
56         available locally.
58 -b, --binary::
59         Pass `--allow-binary-replacement` flag to `git-apply`
60         (see linkgit:git-apply[1]).
62 --whitespace=<option>::
63         This flag is passed to the `git-apply` (see linkgit:git-apply[1])
64         program that applies
65         the patch.
67 -C<n>, -p<n>::
68         These flags are passed to the `git-apply` (see linkgit:git-apply[1])
69         program that applies
70         the patch.
72 -i, --interactive::
73         Run interactively.
75 --skip::
76         Skip the current patch.  This is only meaningful when
77         restarting an aborted patch.
79 -r, --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.
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`.
94 DISCUSSION
95 ----------
97 The commit author name is taken from the "From: " line of the
98 message, and commit author time is taken from the "Date: " line
99 of the message.  The "Subject: " line is used as the title of
100 the commit, after stripping common prefix "[PATCH <anything>]".
101 It is supposed to describe what the commit is about concisely as
102 a one line text.
104 The body of the message (iow, after a blank line that terminates
105 RFC2822 headers) can begin with "Subject: " and "From: " lines
106 that are different from those of the mail header, to override
107 the values of these fields.
109 The commit message is formed by the title taken from the
110 "Subject: ", a blank line and the body of the message up to
111 where the patch begins.  Excess whitespaces at the end of the
112 lines are automatically stripped.
114 The patch is expected to be inline, directly following the
115 message.  Any line that is of form:
117 * three-dashes and end-of-line, or
118 * a line that begins with "diff -", or
119 * a line that begins with "Index: "
121 is taken as the beginning of a patch, and the commit log message
122 is terminated before the first occurrence of such a line.
124 When initially invoking it, you give it names of the mailboxes
125 to crunch.  Upon seeing the first patch that does not apply, it
126 aborts in the middle,.  You can recover from this in one of two ways:
128 . skip the current patch by re-running the command with '--skip'
129   option.
131 . hand resolve the conflict in the working directory, and update
132   the index file to bring it in a state that the patch should
133   have produced.  Then run the command with '--resolved' option.
135 The command refuses to process new mailboxes while `.dotest`
136 directory exists, so if you decide to start over from scratch,
137 run `rm -f -r .dotest` before running the command with mailbox
138 names.
141 SEE ALSO
142 --------
143 linkgit:git-apply[1].
146 Author
147 ------
148 Written by Junio C Hamano <junkio@cox.net>
150 Documentation
151 --------------
152 Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org>.
156 Part of the linkgit:git[7] suite