4193b3acca376fd8633d9309b1b6b34a55a34d07
[git.git] / man1 / git-am.1
1 .\"Generated by db2man.xsl. Don't modify this, modify the source.
2 .de Sh \" Subsection
3 .br
4 .if t .Sp
5 .ne 5
6 .PP
7 \fB\\$1\fR
8 .PP
9 ..
10 .de Sp \" Vertical space (when we can't use .PP)
11 .if t .sp .5v
12 .if n .sp
13 ..
14 .de Ip \" List item
15 .br
16 .ie \\n(.$>=3 .ne \\$3
17 .el .ne 3
18 .IP "\\$1" \\$2
19 ..
20 .TH "GIT-AM" 1 "" "" ""
21 .SH NAME
22 git-am \- Apply a series of patches in a mailbox
23 .SH "SYNOPSIS"
24
25
26 git\-am [\-\-signoff] [\-\-dotest=<dir>] [\-\-utf8] [\-\-binary] [\-\-3way] <mbox>... git\-am [\-\-skip | \-\-resolved]
27
28 .SH "DESCRIPTION"
29
30
31 Splits mail messages in a mailbox into commit log message, authorship information and patches, and applies them to the current branch\&.
32
33 .SH "OPTIONS"
34
35 .TP
36 \-\-signoff
37 Add Signed\-off\-by: line to the commit message, using the committer identity of yourself\&.
38
39 .TP
40 \-\-dotest=<dir>
41 Instead of \&.dotest directory, use <dir> as a working area to store extracted patches\&.
42
43 .TP
44 \-\-utf8, \-\-keep
45 Pass \-u and \-k flags to git\-mailinfo (see \fBgit\-mailinfo\fR(1))\&.
46
47 .TP
48 \-\-binary
49 Pass \-\-allow\-binary\-replacement flag to git\-apply (see \fBgit\-apply\fR(1))\&.
50
51 .TP
52 \-\-3way
53 When the patch does not apply cleanly, fall back on 3\-way merge, if the patch records the identity of blobs it is supposed to apply to, and we have those blobs locally\&.
54
55 .TP
56 \-\-skip
57 Skip the current patch\&. This is only meaningful when restarting an aborted patch\&.
58
59 .TP
60 \-\-interactive
61 Run interactively, just like git\-applymbox\&.
62
63 .TP
64 \-\-resolved
65 After a patch failure (e\&.g\&. attempting to apply conflicting patch), the user has applied it by hand and the index file stores the result of the application\&. Make a commit using the authorship and commit log extracted from the e\-mail message and the current index file, and continue\&.
66
67 .SH "DISCUSSION"
68
69
70 When initially invoking it, you give it names of the mailboxes to crunch\&. Upon seeing the first patch that does not apply, it aborts in the middle, just like git\-applymbox does\&. You can recover from this in one of two ways:
71
72 .TP 3
73 1.
74 skip the current one by re\-running the command with \-\-skip option\&.
75 .TP
76 2.
77 hand resolve the conflict in the working directory, and update the index file to bring it in a state that the patch should have produced\&. Then run the command with \-\-resolved option\&.
78 .LP
79
80
81 The command refuses to process new mailboxes while \&.dotest directory exists, so if you decide to start over from scratch, run rm \-f \&.dotest before running the command with mailbox names\&.
82
83 .SH "SEE ALSO"
84
85
86 \fBgit\-applymbox\fR(1), \fBgit\-applypatch\fR(1)\&.
87
88 .SH "AUTHOR"
89
90
91 Written by Junio C Hamano <junkio@cox\&.net>
92
93 .SH "DOCUMENTATION"
94
95
96 Documentation by Petr Baudis, Junio C Hamano and the git\-list <git@vger\&.kernel\&.org>\&.
97
98 .SH "GIT"
99
100
101 Part of the \fBgit\fR(7) suite
102