# HG changeset patch # User Durham Goode # Date 1367599490 25200 # Node ID f4930b533d55ad4b8910785c6b166f8a798d01bc # Parent a6542a670ece8e13ae7b32ef28e2816d63120524 hgignore: fix regression with hgignore directory matches (issue3921) If a directory matched a regex in hgignore but the files inside the directory did not match the regex, they would appear as deleted in hg status. This change fixes them to appear normally in hg status. Removing the ignore(nf) conditional here is ok because it just means we might stat more files than we had before. My testing on a large repo shows this causes no performance regression since the only additional files being stat'd are the ones that are missing (i.e. status=!), which are generally rare. diff -r a6542a670ece -r f4930b533d55 mercurial/dirstate.py --- a/mercurial/dirstate.py Thu May 02 11:26:43 2013 -0700 +++ b/mercurial/dirstate.py Fri May 03 09:44:50 2013 -0700 @@ -700,7 +700,7 @@ for nf in iter(visit): # Report ignored items in the dmap as long as they are not # under a symlink directory. - if ignore(nf) and audit_path.check(nf): + if audit_path.check(nf): try: results[nf] = lstat(join(nf)) except OSError: diff -r a6542a670ece -r f4930b533d55 tests/test-hgignore.t --- a/tests/test-hgignore.t Thu May 02 11:26:43 2013 -0700 +++ b/tests/test-hgignore.t Fri May 03 09:44:50 2013 -0700 @@ -124,3 +124,13 @@ (?:(?:|.*/)[^/]*(?:/|$)) $ cd .. + +Check patterns that match only the directory + + $ echo "^dir\$" > .hgignore + $ hg status + A dir/b.o + ? .hgignore + ? a.c + ? a.o + ? syntax