vote up 0 vote down star

Suppose i have made a change to a file, hg st show it as modified.

Now i want to commit. Before I can do so i do accidentially hg remove my file. Mercurial now would remove my file on the next commit, hg revert would retain it from removal, my changes would be lost however.

Is exporting a patch and then importing it on top of a MQ my only option to put my file back into "modified" state?

flag

I'm wondering how you managed to accidentally remove that file. When I try to hg remove a modified file, I get the following error message: not removing Textdokument.txt: file is modified (use -f to force removal) TortoiseHg (under Windows) will also refuse to remove it. – Tim Pietzcker Sep 25 at 12:44
please don't ask me :-) it happened with rename – Johannes Rudolph Sep 25 at 12:53
@tim - hg remove -Af filename or hg forget filename (in 1.3+) – Steve Losh Sep 25 at 17:50
Yes, I know about the -f option, but that doesn't count as accidental, does it? :) – Tim Pietzcker Sep 25 at 18:56

1 Answer

vote up 2 vote down check

I am not sure about that but try adding it back with hg add

And you can simply export and apply a patch without MQ

link|flag
i know, however MQ lets me manipulate my "commit" before actually doing a real commit, importing a patch always results in a commit. – Johannes Rudolph Sep 25 at 12:31
I mean apply to the working copy, not import – artemb Sep 25 at 12:39
This is the correct answer. Using hg add on a file that is scheduled to be removed from tracking will undo the remove and leave the contents untouched. – Steve Losh Sep 25 at 12:44
A note on your comment, Johannes Rudolph: "importing a patch always results in a commit". You can avoid that by doing hg import --no-commit – Ry4an Sep 25 at 14:50
im more and more realizing im a mercurial noob :-) seemed so easy in the beginning, and after thinkin about it, indeed it is simple! Mercurial ftw :-) – Johannes Rudolph Sep 25 at 18:04

Your Answer

Get an OpenID
or

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