diff --git a/docs/misc/git.md b/docs/misc/git.md index 6e23d47..8acffcd 100644 --- a/docs/misc/git.md +++ b/docs/misc/git.md @@ -261,13 +261,12 @@ It's generally recommended creating annotated tags so it's possible to have all `git clean -d`: recurse into untracked directories while cleaning `git clean --interactive`: clean files interactively -`git checkout `: discard changes -`git checkout -- `: discard changes, no output to screen `git restore .`: discard uncommitted changes `git restore `: discard uncommitted changes to file `git restore --source `: revert file to commit version +`git restore --staged`: unstage changes made to a file +`git restore --staged --worktree`: unstage and discard changes made to a file `git restore `: recover deleted file if previously committed -`git restore --staged `: unstage a file `git rebase -i|--interactive`: modify (reword, edit, drop, squash, merge, ...) current branch commits `git rebase -i|--interactive HEAD~`: modify (reword, edit, drop, squash, merge, ...) *n* commits