git remove all non-staged modifications code example
Example 1: git undo all changes
git reset --hard
Example 2: how to remove file changes in git
git clean -df
git checkout -- .
git reset --hard
git clean -df
git checkout -- .