To make git to push changes even when your branch is behind (i.e. your remote branch has more recent changes) you can force git to push your changes. In this case the branch is called master:
git push origin master --force
You can also reference a particular repository like so:
git push https://git… --force