It's probably too late, but if you want to rewind your pushed branch (master
?) by one commit, issue the following command:
git push origin +master^:master
+
makes the push forced, master^
describes the previous-last commit. :master
pushes to the remote master branch.