how to git pull and save local changes code example
Example 1: how to pull and overwrite local changes git
git fetch --all
git reset --hard origin/master
Example 2: keep local changes and pull
git stash
git pull
git stash pop
git fetch --all
git reset --hard origin/master
git stash
git pull
git stash pop