diff options
author | Nicolas Vigier <boklm@mars-attacks.org> | 2014-01-24 01:50:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-28 00:15:52 +0100 |
commit | 3253553e12d40da3bca818528f49a63c95f43aa3 (patch) | |
tree | 2238600ec94e6eca80f1443aa237e6c3f585d293 /Documentation/git-revert.txt | |
parent | Git 1.9-rc1 (diff) | |
download | git-3253553e12d40da3bca818528f49a63c95f43aa3.tar.xz git-3253553e12d40da3bca818528f49a63c95f43aa3.zip |
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-revert.txt')
-rw-r--r-- | Documentation/git-revert.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-revert.txt b/Documentation/git-revert.txt index 2de67a5496..9eb83f01a4 100644 --- a/Documentation/git-revert.txt +++ b/Documentation/git-revert.txt @@ -8,7 +8,7 @@ git-revert - Revert some existing commits SYNOPSIS -------- [verse] -'git revert' [--[no-]edit] [-n] [-m parent-number] [-s] <commit>... +'git revert' [--[no-]edit] [-n] [-m parent-number] [-s] [-S[<keyid>]] <commit>... 'git revert' --continue 'git revert' --quit 'git revert' --abort @@ -80,6 +80,10 @@ more details. This is useful when reverting more than one commits' effect to your index in a row. +-S[<keyid>]:: +--gpg-sign[=<keyid>]:: + GPG-sign commits. + -s:: --signoff:: Add Signed-off-by line at the end of the commit message. |