mercurial - Find committed files that should have been ignored -
how can list files in repository committed (explicitly), although ignored because of .hgignore file
- .hgignore uses glob syntax
- running on windows
- it's not necessary take global .hgignore file account
my idea:
hg manifest > filter using content of .hgignore > result
you have learn , use filesets in case
list files in .hgignore tracked:
hg locate "set:hgignore() , not ignored()"
Comments
Post a Comment