Autogenerated man pages for 026351a03507dc3a2e89e068c01234dc55914df2
[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 .nf
26 git\-am [\-\-signoff] [\-\-dotest=<dir>] [\-\-utf8] [\-\-binary] [\-\-3way] <mbox>...
27 git\-am [\-\-skip | \-\-resolved]
28 .fi
29
30 .SH "DESCRIPTION"
31
32
33 Splits mail messages in a mailbox into commit log message, authorship information and patches, and applies them to the current branch\&.
34
35 .SH "OPTIONS"
36
37 .TP
38 \-\-signoff
39 Add Signed\-off\-by: line to the commit message, using the committer identity of yourself\&.
40
41 .TP
42 \-\-dotest=<dir>
43 Instead of \&.dotest directory, use <dir> as a working area to store extracted patches\&.
44
45 .TP
46 \-\-utf8, \-\-keep
47 Pass \-u and \-k flags to git\-mailinfo (see \fBgit\-mailinfo\fR(1))\&.
48
49 .TP
50 \-\-binary
51 Pass \-\-allow\-binary\-replacement flag to git\-apply (see \fBgit\-apply\fR(1))\&.
52
53 .TP
54 \-\-3way
55 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\&.
56
57 .TP
58 \-\-skip
59 Skip the current patch\&. This is only meaningful when restarting an aborted patch\&.
60
61 .TP
62 \-\-interactive
63 Run interactively, just like git\-applymbox\&.
64
65 .TP
66 \-\-resolved
67 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\&.
68
69 .SH "DISCUSSION"
70
71
72 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:
73
74 .TP 3
75 1.
76 skip the current one by re\-running the command with \-\-skip option\&.
77 .TP
78 2.
79 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\&.
80 .LP
81
82
83 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\&.
84
85 .SH "SEE ALSO"
86
87
88 \fBgit\-applymbox\fR(1), \fBgit\-applypatch\fR(1)\&.
89
90 .SH "AUTHOR"
91
92
93 Written by Junio C Hamano <junkio@cox\&.net>
94
95 .SH "DOCUMENTATION"
96
97
98 Documentation by Petr Baudis, Junio C Hamano and the git\-list <git@vger\&.kernel\&.org>\&.
99
100 .SH "GIT"
101
102
103 Part of the \fBgit\fR(7) suite
104