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