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?

hg removea 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:44hg remove -Af filenameorhg forget filename(in 1.3+) – Steve Losh Sep 25 at 17:50