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.

what would be an equivalent mercurial command (or workflow) for

git reset --mixed HEAD^

or

git reset --soft  HEAD^

i.e. I want leave the working tree intact but get the repository back into the state it was before the last commit. Surprisingly I did not find anything useful on stackoverflow or with google.

Note that I cannot use

hg rollback

as I've done some history rewriting using HistEdit after the last commit.

Added to clarify: After some rebasing and history editing I had ended up with A<--B<--C. Then I used HistEdit to squash B and C together, obtaining A<--C'. Now I want to split up the commit C' (I committed the wrong files in B). I figured the easiest way to do this was to get the repository back to state A (which technically never existed in the repository because of all the rebasing and history editing before hand) and the working tree to the state of C' and then doing two commits.

share|improve this question

1 Answer

up vote 4 down vote accepted

One standard way to do this is to use the strip command provided by the mq extension.

hg strip --keep -r -1

That strips out the last revision committed but leaves the repo untouched.

But you need to be careful about terminology here. If you have used histedit to rewrite previous commits, any changes it made will be reflected as new commits in the repository. So it sounds like you mean that you want to restore the repo to the state prior to the commit prior to your histedit commits. To do that, you are likely going to have to examine the commit log (hg log -v) and strip all of those revs and then redo any histedits before or after the changes you now want to make, taking care not to disturb the working directory.

share|improve this answer
Thx. I've added some information of what I did with the repository beforehand. Will hg strip work in that scenario? – Perseids Oct 28 '12 at 21:30
hg strip --keep -r A will get the repo back to A with the working directory unchanged. Then you are free to do a new commit of the working directory and/or whatever histedits you want to do. Note that strip backs up the changesets removed into a backup bundle so you have the opportunity to reapply or edit them if necessary. This situation is why the Mercurial folks strongly discourage editing history. It leads to messy situations like this. Their approach is to keep moving forward except, possibly, for some major checkpoints like just prior to an external release. – Ned Deily Oct 28 '12 at 22:58

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.