summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-02-28 21:37:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-02-28 21:37:52 (GMT)
commitc22c624a9de3576d6e66f81c3a1edc6dfcfb08bb (patch)
tree0f8bdd53d9cad7b369c0e120cdff23bff40bdd27 /Documentation
parent2fc74f41c50562d76defa0617db5bcb7e5216272 (diff)
parent65ed8ff376c4fdd8dd560b3ddbf7d6cd771f860e (diff)
downloadgit-c22c624a9de3576d6e66f81c3a1edc6dfcfb08bb.zip
git-c22c624a9de3576d6e66f81c3a1edc6dfcfb08bb.tar.gz
git-c22c624a9de3576d6e66f81c3a1edc6dfcfb08bb.tar.bz2
Merge branch 'nd/am-quit'
"git am" has learned the "--quit" option, in addition to the existing "--abort" option; having the pair mirrors a few other commands like "rebase" and "cherry-pick". * nd/am-quit: am: support --quit
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-am.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-am.txt b/Documentation/git-am.txt
index 12879e4..460662e 100644
--- a/Documentation/git-am.txt
+++ b/Documentation/git-am.txt
@@ -16,7 +16,7 @@ SYNOPSIS
[--exclude=<path>] [--include=<path>] [--reject] [-q | --quiet]
[--[no-]scissors] [-S[<keyid>]] [--patch-format=<format>]
[(<mbox> | <Maildir>)...]
-'git am' (--continue | --skip | --abort)
+'git am' (--continue | --skip | --abort | --quit)
DESCRIPTION
-----------
@@ -167,6 +167,10 @@ default. You can use `--no-utf8` to override this.
--abort::
Restore the original branch and abort the patching operation.
+--quit::
+ Abort the patching operation but keep HEAD and the index
+ untouched.
+
DISCUSSION
----------