git discard changes before pull code example
Example 1: git pull master discard local changes
git reset --hard origin/master
git pull origin master
Example 2: how to pull the changes from git without staging local changes
git stash save
git pull
git stash pop
Example 3: git remove my local changes and pull from master
git reset --hard