How to check which files are being ignored because of .hgignore?

前端 未结 4 503
孤独总比滥情好
孤独总比滥情好 2021-01-04 01:22

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

4条回答
  •  失恋的感觉
    2021-01-04 01:42

    @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)

提交回复
热议问题