vote up 5 vote down star

I want mercurial to remove several files from the current state of the repository. However, I want the files to exist in prior history.

How do forget and remove differ, and can they do what I want?

flag

79% accept rate
Dont' worry, you cannot remove a file from prior history in Mercurial -- the history is generally immutable unless you start using extensions. – Martin Geisler Jul 9 at 21:18
@Martin: Thanks. :-) – Paul Nathan Jul 10 at 16:40

2 Answers

vote up 10 vote down check

'hg forget' is just shorthand for 'hg remove -Af'. From the 'hg remove' help:

...and -Af can be used to remove files from the next revision without deleting them from the working directory.

Bottom line: 'remove' deletes the file from your working copy on disk (unless you uses -Af) and 'forget' doesn't.

link|flag
1  
"hg forget" is re-introduced in Mercurial 1.3 as an easier way to do "hg remove -Af". It schedules the file for deletion without removing it from the working copy. – Martin Geisler Jul 9 at 21:14
1  
Glad to hear it. 'remove -Af' (and the whole table of options on the 'remove' help page) is/was craziness. – Ry4an Jul 10 at 2:40
1  
@Ry4an: Seriously, it was ridiculous. I contributed the patch that reintroduced 'forget'. When I was making it I realized that -Af made complete sense in the code but from a user's view it was completely ridiculous. – Steve Losh Jul 17 at 2:17
Heh, that's what's so great about mercurial -- people are actively and iteratively thinking about what makes sense from a user's point of view. Thanks for fixing that one. – Ry4an Jul 17 at 5:07
I thought I was the only one who considered this an essential feature – Mark Stahler Jul 25 at 2:44
vote up 1 vote down

From the documentation, you can apparently use either command to keep the file in the project history. Looks like you want remove, since it also deletes the file from the working directory.

From the Mercurial book at http://hgbook.red-bean.com/read/:

Removing a file does not affect its history. It is important to understand that removing a file has only two effects. It removes the current version of the file from the working directory. It stops Mercurial from tracking changes to the file, from the time of the next commit. Removing a file does not in any way alter the history of the file.

The man page hg(1) says this about forget:

Mark the specified files so they will no longer be tracked after the next commit. This only removes files from the current branch, not from the entire project history, and it does not delete them from the working directory.

And this about remove:

Schedule the indicated files for removal from the repository. This only removes files from the current branch, not from the entire project history.

link|flag

Your Answer

Get an OpenID
or

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