git pull disregard code example
Example 1: how to pull the changes from git without staging local changes
git stash save
git pull
git stash pop
Example 2: git remove my local changes and pull from master
git reset --hard <your commit hash key>
git stash save
git pull
git stash pop
git reset --hard <your commit hash key>