Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In git let say I commit A and B

A---[B]

But then I revet with

git revert HEAD

So I am there now:

[A]---B

How do I cancel my revert so that I can go back to B?

Thanks

share|improve this question
I am not sure how the term "revert" is used in Git means, but in general, reverting means to overwrite any local changes. So only an undelete tool could help at all, but there are little chances. – Andreas Jul 7 '10 at 22:25
2  
@Andreas: In Git, a "revert" is a new commit that reverses the application of some earlier commit. – Greg Hewgill Jul 7 '10 at 22:30
@Greg: Thanks for clearification. – Andreas Jul 7 '10 at 22:31
2  
Your picture is inaccurate. After the revert, you have A---B---!B, where !B is the commit reverting B. Greg's two answers, respectively, create a commit !!B reverting !B or return you to B. – Jefromi Jul 8 '10 at 0:05

1 Answer

up vote 11 down vote accepted

You have two general choices:

  • Revert the revert commit (creating a second revert commit that takes you back to the original)
  • Throw away the revert commit with git reset --hard HEAD^

The second option is only appropriate if you have not pushed your changes anywhere else. In fact, if you haven't pushed your first revert commit anywhere yet, you can simply use git reset --hard to roll back without creating any revert commits at all.

share|improve this answer
Thanks for the help Greg. – Rafid Nov 9 '10 at 18:48

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.