Git Push Origin Master - Force
git push origin --force
Lovely Lemur
git push origin --force
git fetch origin
git checkout --track origin/<remote_branch_name>
git pull origin master
git pull origin master:master
git checkout my_branch # move on your branch (make sure it exists)
git fetch origin # fetch all changes
git pull origin master # pull changes from the origin remote, master branch and merge them into my_branch
git push origin my_branch # push my_branch
git pull origin