table of contents
GIT-AM(1) | Git Manual | GIT-AM(1) |
NAME¶
git-am - Apply a series of patches from a mailbox
SYNOPSIS¶
git am [--signoff] [--keep] [--keep-cr | --no-keep-cr] [--utf8 | --no-utf8]
[--3way] [--interactive] [--committer-date-is-author-date]
[--ignore-date] [--ignore-space-change | --ignore-whitespace]
[--whitespace=<option>] [-C<n>] [-p<n>] [--directory=<dir>]
[--reject] [-q | --quiet] [--scissors | --no-scissors]
[<mbox> | <Maildir>...] git am (--continue | --skip | --abort)
DESCRIPTION¶
Splits mail messages in a mailbox into commit log message, authorship information and patches, and applies them to the current branch.
OPTIONS¶
<mbox>|<Maildir>...
-s, --signoff
-k, --keep
--keep-cr, --no-keep-cr
-c, --scissors
--no-scissors
-q, --quiet
-u, --utf8
This was optional in prior versions of git, but now it is the default. You can use --no-utf8 to override this.
--no-utf8
-3, --3way
--ignore-date, --ignore-space-change, --ignore-whitespace, --whitespace=<option>, -C<n>, -p<n>, --directory=<dir>, --reject
-i, --interactive
--committer-date-is-author-date
--ignore-date
--skip
--continue, -r, --resolved
--resolvemsg=<msg>
--abort
DISCUSSION¶
The commit author name is taken from the "From: " line of the message, and commit author date is taken from the "Date: " line of the message. The "Subject: " line is used as the title of the commit, after stripping common prefix "[PATCH <anything>]". The "Subject: " line is supposed to concisely describe what the commit is about in one line of text.
"From: " and "Subject: " lines starting the body override the respective commit author name and title values taken from the headers.
The commit message is formed by the title taken from the "Subject: ", a blank line and the body of the message up to where the patch begins. Excess whitespace at the end of each line is automatically stripped.
The patch is expected to be inline, directly following the message. Any line that is of the form:
is taken as the beginning of a patch, and the commit log message is terminated before the first occurrence of such a line.
When initially invoking git am, you give it the names of the mailboxes to process. Upon seeing the first patch that does not apply, it aborts in the middle. You can recover from this in one of two ways:
The command refuses to process new mailboxes while the .git/rebase-apply directory exists, so if you decide to start over from scratch, run rm -f -r .git/rebase-apply before running the command with mailbox names.
Before any patches are applied, ORIG_HEAD is set to the tip of the current branch. This is useful if you have problems with multiple commits, like running git am on the wrong branch or an error in the commits that is more easily fixed by changing the mailbox (e.g. errors in the "From:" lines).
SEE ALSO¶
AUTHOR¶
Written by Junio C Hamano <gitster@pobox.com[1]>
DOCUMENTATION¶
Documentation by Petr Baudis, Junio C Hamano and the git-list <git@vger.kernel.org[2]>.
GIT¶
Part of the git(1) suite
NOTES¶
- 1.
- gitster@pobox.com
- 2.
- git@vger.kernel.org
02/03/2020 | Git 1.7.1 |