Add notes on git reset

This commit is contained in:
Marcello 2021-05-20 12:21:48 +02:00 committed by GitHub
parent 965a1936b4
commit 66829521b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -214,7 +214,7 @@ Its generally recommended creating annotated tags so it's possible to have al
`git reset <commit>`: undo all commits after specified commit, preserving changes locally
`git checkout <file>`: discard changes
`git checkout -- <file>`: discard changes, no output to screen
`git reset --hard`: discard all changes since last commit
`git reset --soft <commit>`: revert to specific commit but keep changes and staged files
`git reset --hard <commit>`: discard all history and changes back to specified commit
`git rebase -i HEAD~<n>`: modify (reword, edit, drop, squash, merge, ...) *n* commits