how to remove one modified files in git code example
Example 1: undo unstaged changes git
git checkout -- .
Example 2: revert unstaged changes git
git checkout -- path/to/file/to/revert
git checkout -- .
git checkout -- path/to/file/to/revert