diff options
author | Dan McGee <dpmcgee@gmail.com> | 2008-04-26 15:14:28 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-26 14:06:17 -0700 |
commit | cfd9c27708509457f572373bd8f4eb25dd4a6715 (patch) | |
tree | fa9cd1f17ec5b8085c82dfa463d02866d6d28032 /Documentation/git-revert.txt | |
parent | 36c79d2bf893b9957688a6c8c13cc0bf0589e596 (diff) | |
download | git-cfd9c27708509457f572373bd8f4eb25dd4a6715.tar.gz git-cfd9c27708509457f572373bd8f4eb25dd4a6715.tar.xz |
Allow cherry-pick (and revert) to add signoff line
I often find myself pulling patches off of other peoples trees using
cherry-pick, and following it with an immediate 'git commit --amend -s'
command. Eliminate the need for a double commit by allowing signoff on a
cherry-pick or revert.
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-revert.txt')
-rw-r--r-- | Documentation/git-revert.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-revert.txt b/Documentation/git-revert.txt index 93e20f775..13ceabbcc 100644 --- a/Documentation/git-revert.txt +++ b/Documentation/git-revert.txt @@ -7,7 +7,7 @@ git-revert - Revert an existing commit SYNOPSIS -------- -'git-revert' [--edit | --no-edit] [-n] [-m parent-number] <commit> +'git-revert' [--edit | --no-edit] [-n] [-m parent-number] [-s] <commit> DESCRIPTION ----------- @@ -51,6 +51,9 @@ OPTIONS This is useful when reverting more than one commits' effect to your working tree in a row. +-s|--signoff:: + Add Signed-off-by line at the end of the commit message. + Author ------ |