Find deleted files in Mercurial repository history, quickly?

Viewed 17045

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.

6 Answers
Related