how to remove changes to a specific file in git code example
Example 1: git delete changes
git clean -df
git checkout -- .
Example 2: git discard staged changes
git reset HEAD
git checkout .
git clean -df
git checkout -- .
git reset HEAD
git checkout .