mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-20 02:50:31 +00:00
Update cheatsheets
This commit is contained in:
29
git-revert
Normal file
29
git-revert
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 {{0c01a9..9a1743}}`
|
||||
Reference in New Issue
Block a user