How to discard unstaged changes in git
Remove all untracked files with
git clean -df
Restore files to their last committed state
git checkout -- .
Remove all untracked files with
git clean -df
Restore files to their last committed state
git checkout -- .