I\'m quite often concerned that my hgignore file may be excluding important files. For example I just noticed that I was excluding all .exe files which excluded some little
@Jon beat me to the punch with the right answer, but its worth nothing that along with status -i
, there is:
hg status -m
(only modified files)hg status -a
(only files that were added)hg status -r
(only files that were removed)hg status -d
(only files that were deleted)hg status -u
(all non-tracked files)hg status -c
(files with no changes, ie. "clean")hg status -A
(all files, ie, everything)