1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-10 02:35:40 +02:00
tldr/pages/common/git-revert.md
Managor db25f60eb1
git-*: convert options to longform and minor fixes (#13441)
Co-authored-by: spageektti <git@spageektti.cc>
Co-authored-by: Fazle Arefin <fazlearefin@users.noreply.github.com>
2024-08-31 13:06:48 +02:00

24 lines
489 B
Markdown

# 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 {{--no-commit|-n}} {{0c01a9..9a1743}}`