git ignore local changes and pull code example
Example 1: keep local changes and pull
git stash
git pull
git stash pop
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 <your commit hash key>