mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-22 13:51:21 +00:00
Update cheatsheets
This commit is contained in:
@@ -10,11 +10,11 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Revert the most recent commit:
|
||||
|
||||
`git revert {{HEAD}}`
|
||||
`git revert HEAD`
|
||||
|
||||
- Revert the 5th last commit:
|
||||
|
||||
`git revert HEAD~{{4}}`
|
||||
`git revert HEAD~4`
|
||||
|
||||
- Revert a specific commit:
|
||||
|
||||
@@ -22,11 +22,11 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Revert multiple commits:
|
||||
|
||||
`git revert {{branch_name~5..branch_name~2}}`
|
||||
`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}}`
|
||||
`git revert {{[-n|--no-commit]}} {{0c01a9}}..{{9a1743}}`
|
||||
|
||||
- Cancel a Git revert after a merge conflict:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user