aboutsummaryrefslogtreecommitdiff
path: root/Documentation/git-revert-script.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-08-28 03:01:09 -0700
committerJunio C Hamano <junkio@cox.net>2005-08-29 12:52:03 -0700
commitde2b82c65dac0e9768bc32f38e96b61d0b778843 (patch)
treee0d819a13934058dddb2b8f6477aee1bc6442eff /Documentation/git-revert-script.txt
parente47e35acdda5e334befcde6ffaf207cb5a63b6f4 (diff)
downloadgit-de2b82c65dac0e9768bc32f38e96b61d0b778843.tar.xz
Document "git cherry-pick" and "git revert"
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-revert-script.txt')
-rw-r--r--Documentation/git-revert-script.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/Documentation/git-revert-script.txt b/Documentation/git-revert-script.txt
index 727073e279..9609dcd325 100644
--- a/Documentation/git-revert-script.txt
+++ b/Documentation/git-revert-script.txt
@@ -7,7 +7,7 @@ git-revert-script - Revert an existing commit.
SYNOPSIS
--------
-'git-revert-script' <commit>
+'git-revert-script' [-n] <commit>
DESCRIPTION
-----------
@@ -20,6 +20,20 @@ OPTIONS
<commit>::
Commit to revert.
+-n::
+ Usually the command automatically creates a commit with
+ a commit log message stating which commit was reverted.
+ This flag applies the change necessary to revert the
+ named commit to your working tree, but does not make the
+ commit. In addition, when this option is used, your
+ working tree does not have to match the HEAD commit.
+ The revert is done against the beginning state of your
+ working tree.
+
+ This is useful when reverting more than one commits'
+ effect to your working tree in a row.
+
+
Author
------
Written by Junio C Hamano <junkio@cox.net>