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
|
In git let say I commit A and B
But then I revet with
So I am there now:
How do I cancel my revert so that I can go back to B? Thanks |
|||
|
You have two general choices:
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 |
|||
|
|
A---B---!B, where!Bis the commit revertingB. Greg's two answers, respectively, create a commit!!Breverting!Bor return you toB. – Jefromi Jul 8 '10 at 0:05