Git -Updates wurden abgelehnt, weil die Spitze Ihres aktuellen Zweigs dahinter liegt
git push -f origin master
Concerned Chipmunk
git push -f origin master
// if this don't work
git pull origin FixForBug
git push origin FixForBug
// then, do this:
git push -f origin FixForBug
git push -uf origin <branch_name>
# You can force push your local code status by -f
# Do this, if you are sure that your commit status in local should be reflected in remote too.
git push -f origin master