delete unstaged changes git code example
Example 1: git discard local changes
git checkout -- <file>
git reset --hard
Example 2: discard unstaged changes git
git checkout -- .
git checkout -- path/to/file/to/revert
Example 3: undo unstaged changes git
git checkout -- .
Example 4: git discard unstaged files
git stash save --keep-index --include-untracked
Example 5: revert unstaged changes git
git checkout -- path/to/file/to/revert
Example 6: what to do with unstaged changes after reset
git reset --hard