2019-06-30 23:25:31 +01:00
|
|
|
# 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:
|
|
|
|
|
2021-10-01 19:47:08 +01:00
|
|
|
`git revert {{HEAD}}`
|
2019-06-30 23:25:31 +01:00
|
|
|
|
|
|
|
- Revert the 5th last commit:
|
|
|
|
|
|
|
|
`git revert HEAD~{{4}}`
|
|
|
|
|
2023-02-06 12:58:55 +00:00
|
|
|
- Revert a specific commit:
|
|
|
|
|
|
|
|
`git revert {{0c01a9}}`
|
|
|
|
|
2019-06-30 23:25:31 +01:00
|
|
|
- Revert multiple commits:
|
|
|
|
|
2020-10-19 19:26:01 +01:00
|
|
|
`git revert {{branch_name~5..branch_name~2}}`
|
2019-06-30 23:25:31 +01:00
|
|
|
|
|
|
|
- Don't create new commits, just change the working tree:
|
|
|
|
|
|
|
|
`git revert -n {{0c01a9..9a1743}}`
|