X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=Documentation%2Fgit-revert-script.txt;h=9609dcd325062d88871bf91b9642bef61f8f9224;hb=2ab141a26f93c4d97e243a6be8a38a7dd4eb35a3;hp=727073e27958cfeaff10c0a4db2fb77b5f2ae73c;hpb=10d781b9caa4f71495c7b34963bef137216f86a8;p=git.git diff --git a/Documentation/git-revert-script.txt b/Documentation/git-revert-script.txt index 727073e2..9609dcd3 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' +'git-revert-script' [-n] DESCRIPTION ----------- @@ -20,6 +20,20 @@ OPTIONS :: 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