git remove all non-staged changes and revert to staged code example
Example 1: git undo all changes
git reset --hard
Example 2: git reset one file
git checkout HEAD -- my-file.txt
git reset --hard
git checkout HEAD -- my-file.txt