At some stage in the past I had a \"foo.txt\" which was under Mercurial source control. However it has now been deleted.
How can I recover the file when I don\'t know th
Using revsets:
hg log -r "removes('path_to_file')"
Where path_to_file can be anything documented in hg help patterns, including an exact path, a glob or a regular expression.
path_to_file
hg help patterns