Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm not really familiar with how git works. I pushed a commit by mistake and want to revert it. I did a

git reset --hard HEAD~1

and now the project is reverted on my machine, but not on github. If I try to push this code, I get the error 'Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded.' How do I remove this commit from github?

share|improve this question
git push -f did the trick. Thanks. – David Mar 21 '11 at 18:31
The fast-forwarding message is just a hint, not really an error. It's the normal message you get if you don't push after each commit. – eckes Mar 21 '11 at 19:45

4 Answers

up vote 10 down vote accepted

You can do git push --force but be aware that you are rewriting history and anyone using the repo will have issue with this.

If you want to prevent this problem, don't use reset, but instead use git revert

share|improve this answer
1  
Generally, I say rewriting history is not a good idea, but particularly in a shared environment. Go with the git revert – trimbletodd May 22 '12 at 20:38

Or you can try using git revert http://www.kernel.org/pub/software/scm/git/docs/git-revert.html. I think something like git revert HEAD~1 -m 1 will revert your last commit (if it's still the last commit).

share|improve this answer

git push -f maybe?

man git-push will tell more.

share|improve this answer

I think you need to push a revert commit. So pull from github again, including the commit you want to revert, then use git revert and push the result.

If you don't care about other people's clones of your github repository being broken, you can also delete and recreate the master branch on github after your reset: git push origin :master.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.