mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Add notes on git reset
This commit is contained in:
parent
965a1936b4
commit
66829521b8
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ It’s 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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue