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.

Stupid mistake on my part, but I did a pull & merge and forgot to do a commit after the merge.

I started working with some files and deleted a folder by mistake. I tried doing hg restore on the files, but I get the error:

abort: uncommitted merge with no revision specified

and if I try to do hg ci I get:

abort: cannot commit merge with missing files

How can I restore the files so I can commit the merge and continue working?

share|improve this question

1 Answer

up vote 2 down vote accepted

Try:

hg revert <file> -r <specific_revision_to_restore>

When there is a merge in progress, Mercurial doesn't know which parent from which to restore the revision.

share|improve this answer
Ah, that was it! – nynexman4464 Sep 7 '12 at 20:12

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.