mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 14:15:26 +02:00
git-revert: add page (#3151)
This commit is contained in:
parent
334bb3c5fb
commit
13a11782e8
1 changed files with 20 additions and 0 deletions
20
pages/common/git-revert.md
Normal file
20
pages/common/git-revert.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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 {{@}}`
|
||||
|
||||
- Revert the 5th last commit:
|
||||
|
||||
`git revert HEAD~{{4}}`
|
||||
|
||||
- Revert multiple commits:
|
||||
|
||||
`git revert {{master~5..master~2}}`
|
||||
|
||||
- Don't create new commits, just change the working tree:
|
||||
|
||||
`git revert -n {{0c01a9..9a1743}}`
|
Loading…
Add table
Reference in a new issue