diff options
author | Nicolas Vigier <boklm@mars-attacks.org> | 2014-01-24 00:50:58 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-27 15:15:52 -0800 |
commit | 3253553e12d40da3bca818528f49a63c95f43aa3 (patch) | |
tree | 2238600ec94e6eca80f1443aa237e6c3f585d293 /Documentation/git-cherry-pick.txt | |
parent | bd3e186d811a13d8687584856f345a767e3e4d67 (diff) | |
download | git-3253553e12d40da3bca818528f49a63c95f43aa3.tar.gz |
cherry-pick, revert: add the --gpg-sign option
Signed-off-by: Nicolas Vigier <boklm@mars-attacks.org>
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-cherry-pick.txt')
-rw-r--r-- | Documentation/git-cherry-pick.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-cherry-pick.txt b/Documentation/git-cherry-pick.txt index c205d2363e..f1e6b2fd6d 100644 --- a/Documentation/git-cherry-pick.txt +++ b/Documentation/git-cherry-pick.txt @@ -8,7 +8,8 @@ git-cherry-pick - Apply the changes introduced by some existing commits SYNOPSIS -------- [verse] -'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] <commit>... +'git cherry-pick' [--edit] [-n] [-m parent-number] [-s] [-x] [--ff] + [-S[<keyid>]] <commit>... 'git cherry-pick' --continue 'git cherry-pick' --quit 'git cherry-pick' --abort @@ -100,6 +101,10 @@ effect to your index in a row. --signoff:: Add Signed-off-by line at the end of the commit message. +-S[<keyid>]:: +--gpg-sign[=<keyid>]:: + GPG-sign commits. + --ff:: If the current HEAD is the same as the parent of the cherry-pick'ed commit, then a fast forward to this commit will |