Name

revert

Synopsis

git revert [-n] commit

Create a new commit that reverses the effect of commit.

Options

-n, --no-commit
-s, --signoff

Examples

To undo the most recent commit:

$ git revert HEAD
[master ae3f932] Revert "Say hello."
 1 files changed, 0 insertions(+), 50 deletions(-)

To undo commit ae3f932, even if it is not the most recent commit:

$ git revert ae3f932
[master ae3f932] Revert "Say hello."
 1 files changed, 0 insertions(+), 50 deletions(-)

Get Linux in a Nutshell, 6th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.