git pull hard or force code example
Example 1: git force pull
git fetch --all
git reset --hard origin/master
Example 2: force git pull overwrite
# if working with newer repos where 'master' is now 'main'
git fetch --all
git reset --hard origin/main