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.
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.
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.