You can use hg grep, but it searches the contents of all files.

What if I just want to search the file names of deleted files to recover one?

I tried hg grep -I file-name-pattern pattern but this seems to return no results.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 25 down vote accepted

using templates is simple:

$ hg log --template "{rev}: {file_dels}\n"
link|improve this answer
1  
A minor tweak to get rid of commits where no deletion happend: hg log --template "{rev}: {file_dels}\n" | grep -v ':\s*$' – Peter Rowell Jun 20 '09 at 22:56
2  
I use this all the time now, I wish I could vote you up more – Frank Krueger Aug 12 '10 at 19:35
2  
Could someone explain how to use this with grep to find the name of the file you care about, for us newbies? thanks! – Richard Jul 8 '11 at 10:14
1  
This command is really simple. It writes the whole repository log using the provided template. In this case it writes revision number and the deleted filed for each revision - you can use grep to find the needed file. Once you have the revision you can use hg revert -r 123 path/to/the/file.txt to recover it. Note that you need to specify a revision prior to the one where you deleted the file! (just substract 1) – johndodo Jan 20 at 10:01
1  
This solution is really slow, if you are a current mercurial, you should go with th revset solution in the other answer. – cebewee Jan 30 at 9:35
show 2 more comments
feedback

Update for Mercurial 1.6

You can use revsets for this too:

hg log -r "removes('*')"

Take a look at hg help revsets for the rest of the query language.

link|improve this answer
2  
I'd combine both of those: hg log --template "{rev}: {file_dels}\n" -r "removes('*')". Otherwise, your default hg log template might not show which files were removed. – Mathieu Longtin Mar 17 at 13:22
@MathieuLongtin Good suggestion. I've looked into the templating stuff before, but it always feels a bit clunky to use unless you've got aliases defined. – shambulator Mar 18 at 12:23
feedback

Your Answer

 
or
required, but never shown

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