git force push hash code example
Example 1: git reset remote
# local
git reset <commit-hash>
# or
git reset --hard <commit-hash>
# remote
git push -f origin master
Example 2: git force push to remote
git push -f <remote> <branch>
# example: git push -f origin master