I\'d like to remove a directory and all the files in it from a repo.
I have removed all the files with hg remove, but how do I remove the directory itself?
hg remove
To remove a directory, Just do
hg remove hg commit -m "..."
This will remove the directory and all files under it.