I use this to remove a file from the repo:
hg remove
What command can you use to do an hg remove on
This will add all new files that are not ignored, and remove all locally missing files
hg addremove
Either of these will remove all locally missing files(They are the same command)
hg remove --after hg remove -A