You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
19 years ago
|
git-revert(1)
|
||
|
=============
|
||
19 years ago
|
|
||
|
NAME
|
||
|
----
|
||
19 years ago
|
git-revert - Revert an existing commit.
|
||
19 years ago
|
|
||
|
SYNOPSIS
|
||
|
--------
|
||
19 years ago
|
'git-revert' [-n] <commit>
|
||
19 years ago
|
|
||
|
DESCRIPTION
|
||
|
-----------
|
||
19 years ago
|
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).
|
||
19 years ago
|
|
||
|
OPTIONS
|
||
|
-------
|
||
19 years ago
|
<commit>::
|
||
|
Commit to revert.
|
||
19 years ago
|
|
||
19 years ago
|
-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.
|
||
|
|
||
|
|
||
19 years ago
|
Author
|
||
|
------
|
||
|
Written by Junio C Hamano <junkio@cox.net>
|
||
|
|
||
|
Documentation
|
||
|
--------------
|
||
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
||
|
|
||
|
GIT
|
||
|
---
|
||
|
Part of the link:git.html[git] suite
|
||
|
|