git pull force code example
Example 1: git pull hard
git reset --hard origin/master
Example 2: git force push
git push --force
Example 3: force pull git
# WARNING: this can't be undone!
git reset --hard HEAD
git clean -f -d
git pull
Example 4: git pull force
git fetch --all
git reset --hard origin/master
Example 5: git overwrite local branch with remote
git reset --hard origin/master
Example 6: force pull git
git reset --hard HEAD
git pull