HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

git revert — Create new commits which reverse the effect of earlier ones. More information: <https://git-scm.com/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
createcommandnewclicommitsgit revertreversewhich

Problem

How to use the git revert command: Create new commits which reverse the effect of earlier ones. More information: <https://git-scm.com/docs/git-revert>.

Solution

git revert — Create new commits which reverse the effect of earlier ones. More information: <https://git-scm.com/docs/git-revert>.

Revert the most recent commit:
git revert HEAD


Revert the 5th last commit:
git revert HEAD~4


Revert a specific commit:
git revert {{0c01a9}}


Revert multiple commits:
git revert {{branch_name~5}}..{{branch_name~2}}


Don't create new commits, just change the working tree:
git revert {{[-n|--no-commit]}} {{0c01a9}}..{{9a1743}}


Cancel a Git revert after a merge conflict:
git revert --abort

Code Snippets

Revert the most recent commit

git revert HEAD

Revert the 5th last commit

git revert HEAD~4

Revert a specific commit

git revert {{0c01a9}}

Revert multiple commits

git revert {{branch_name~5}}..{{branch_name~2}}

Don't create new commits, just change the working tree

git revert {{[-n|--no-commit]}} {{0c01a9}}..{{9a1743}}

Context

tldr-pages: common/git revert

Revisions (0)

No revisions yet.