2005-09-08 02:26:23 +02:00
|
|
|
git-revert(1)
|
|
|
|
=============
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-revert - Revert an existing commit.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-09-08 02:26:23 +02:00
|
|
|
'git-revert' [-n] <commit>
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-08-27 03:18:48 +02:00
|
|
|
Given one existing commit, revert the change the patch introduces, and record a
|
|
|
|
new commit that records it. This requires your working tree to be clean (no
|
|
|
|
modifications from the HEAD commit).
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-08-27 03:18:48 +02:00
|
|
|
<commit>::
|
|
|
|
Commit to revert.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-08-28 12:01:09 +02:00
|
|
|
-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.
|
2005-10-03 19:16:30 +02:00
|
|
|
+
|
|
|
|
This is useful when reverting more than one commits'
|
|
|
|
effect to your working tree in a row.
|
2005-08-28 12:01:09 +02:00
|
|
|
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-08-23 10:49:47 +02:00
|
|
|
|