discard changes in working directory git code example
Example 1: undo unstaged changes git
git checkout -- .
Example 2: git remove my local changes and pull from master
git reset --hard <your commit hash key>
git checkout -- .
git reset --hard <your commit hash key>