Is there a command in mercurial that will list all files currently under source control?
I can do a dir /s to list all files in my folder and subfolders,
dir /s
hg manifest will list only the files in the repository, while hg status --all will list all the files in the repository's structure and include a marker for which are being tracked and which aren't.
hg manifest
hg status --all