Revert part of 384364b (Start preparing for Git 2.0, 2014-03-07)
[gitweb.git] / Documentation / git-am.txt
index f8a7d0c85645e92011b12e9b9504a9c3105c7f20..9adce372ec6e6ec0d371c411da1e5002baea5f51 100644 (file)
@@ -12,9 +12,9 @@ SYNOPSIS
 'git am' [--signoff] [--keep] [--[no-]keep-cr] [--[no-]utf8]
         [--3way] [--interactive] [--committer-date-is-author-date]
         [--ignore-date] [--ignore-space-change | --ignore-whitespace]
-        [--whitespace=<option>] [-C<n>] [-p<n>] [--patch-format=<format>]
-        [--directory=<dir>] [--exclude=<path>] [--include=<path>]
-        [--reject] [-q | --quiet] [--[no-]scissors]
+        [--whitespace=<option>] [-C<n>] [-p<n>] [--directory=<dir>]
+        [--exclude=<path>] [--include=<path>] [--reject] [-q | --quiet]
+        [--[no-]scissors] [-S[<keyid>]] [--patch-format=<format>]
         [(<mbox> | <Maildir>)...]
 'git am' (--continue | --skip | --abort)
 
@@ -125,6 +125,10 @@ default.   You can use `--no-utf8` to override this.
        Skip the current patch.  This is only meaningful when
        restarting an aborted patch.
 
+-S[<keyid>]::
+--gpg-sign[=<keyid>]::
+       GPG-sign commits.
+
 --continue::
 -r::
 --resolved::
@@ -195,6 +199,11 @@ 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).
 
+HOOKS
+-----
+This command can run `applypatch-msg`, `pre-applypatch`,
+and `post-applypatch` hooks.  See linkgit:githooks[5] for more
+information.
 
 SEE ALSO
 --------