Documentation / git-revert.txton commit revert: Introduce --continue to continue the operation (5a5d80f)
   1git-revert(1)
   2=============
   3
   4NAME
   5----
   6git-revert - Revert some existing commits
   7
   8SYNOPSIS
   9--------
  10'git revert' [--edit | --no-edit] [-n] [-m parent-number] [-s] <commit>...
  11'git revert' --reset
  12'git revert' --continue
  13
  14DESCRIPTION
  15-----------
  16
  17Given one or more existing commits, revert the changes that the
  18related patches introduce, and record some new commits that record
  19them.  This requires your working tree to be clean (no modifications
  20from the HEAD commit).
  21
  22Note: 'git revert' is used to record some new commits to reverse the
  23effect of some earlier commits (often only a faulty one).  If you want to
  24throw away all uncommitted changes in your working directory, you
  25should see linkgit:git-reset[1], particularly the '--hard' option.  If
  26you want to extract specific files as they were in another commit, you
  27should see linkgit:git-checkout[1], specifically the `git checkout
  28<commit> -- <filename>` syntax.  Take care with these alternatives as
  29both will discard uncommitted changes in your working directory.
  30
  31OPTIONS
  32-------
  33<commit>...::
  34        Commits to revert.
  35        For a more complete list of ways to spell commit names, see
  36        linkgit:gitrevisions[7].
  37        Sets of commits can also be given but no traversal is done by
  38        default, see linkgit:git-rev-list[1] and its '--no-walk'
  39        option.
  40
  41-e::
  42--edit::
  43        With this option, 'git revert' will let you edit the commit
  44        message prior to committing the revert. This is the default if
  45        you run the command from a terminal.
  46
  47-m parent-number::
  48--mainline parent-number::
  49        Usually you cannot revert a merge because you do not know which
  50        side of the merge should be considered the mainline.  This
  51        option specifies the parent number (starting from 1) of
  52        the mainline and allows revert to reverse the change
  53        relative to the specified parent.
  54+
  55Reverting a merge commit declares that you will never want the tree changes
  56brought in by the merge.  As a result, later merges will only bring in tree
  57changes introduced by commits that are not ancestors of the previously
  58reverted merge.  This may or may not be what you want.
  59+
  60See the link:howto/revert-a-faulty-merge.txt[revert-a-faulty-merge How-To] for
  61more details.
  62
  63--no-edit::
  64        With this option, 'git revert' will not start the commit
  65        message editor.
  66
  67-n::
  68--no-commit::
  69        Usually the command automatically creates some commits with
  70        commit log messages stating which commits were
  71        reverted.  This flag applies the changes necessary
  72        to revert the named commits to your working tree
  73        and the index, but does not make the commits.  In addition,
  74        when this option is used, your index does not have to match
  75        the HEAD commit.  The revert is done against the
  76        beginning state of your index.
  77+
  78This is useful when reverting more than one commits'
  79effect to your index in a row.
  80
  81-s::
  82--signoff::
  83        Add Signed-off-by line at the end of the commit message.
  84
  85--strategy=<strategy>::
  86        Use the given merge strategy.  Should only be used once.
  87        See the MERGE STRATEGIES section in linkgit:git-merge[1]
  88        for details.
  89
  90-X<option>::
  91--strategy-option=<option>::
  92        Pass the merge strategy-specific option through to the
  93        merge strategy.  See linkgit:git-merge[1] for details.
  94
  95SEQUENCER SUBCOMMANDS
  96---------------------
  97include::sequencer.txt[]
  98
  99EXAMPLES
 100--------
 101git revert HEAD~3::
 102
 103        Revert the changes specified by the fourth last commit in HEAD
 104        and create a new commit with the reverted changes.
 105
 106git revert -n master{tilde}5..master{tilde}2::
 107
 108        Revert the changes done by commits from the fifth last commit
 109        in master (included) to the third last commit in master
 110        (included), but do not create any commit with the reverted
 111        changes. The revert only modifies the working tree and the
 112        index.
 113
 114SEE ALSO
 115--------
 116linkgit:git-cherry-pick[1]
 117
 118GIT
 119---
 120Part of the linkgit:git[1] suite