git reset local changes for a file code example
Example 1: how to remove file changes in git
git clean -df
git checkout -- .
Example 2: git discard staged changes
git reset HEAD
git checkout .
Example 3: git remove my local changes and pull from master
git reset --hard <your commit hash key>