diff options
author | Russell Belfer <rb@github.com> | 2014-05-06 12:41:26 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2014-05-06 12:41:26 -0700 |
commit | f554611a274aafd702bd899f4663c16eb76ae8f0 (patch) | |
tree | ec8a997094d70bb4a5dad0471d6fc38721d900a9 /src/iterator.h | |
parent | d2c16e9ac4921e94eb5db972e6b8452d71a623fc (diff) | |
download | libgit2-f554611a274aafd702bd899f4663c16eb76ae8f0.tar.gz |
Improve checks for ignore containmentrb/how-broken-can-ignores-be
The diff code was using an "ignored_prefix" directory to track if
a parent directory was ignored that contained untracked files
alongside tracked files. Unfortunately, when negative ignore rules
were used for directories inside ignored parents, the wrong rules
were applied to untracked files inside the negatively ignored
child directories.
This commit moves the logic for ignore containment into the workdir
iterator (which is a better place for it), so the ignored-ness of
a directory is contained in the frame stack during traversal. This
allows a child directory to override with a negative ignore and yet
still restore the ignored state of the parent when we traverse out
of the child.
Along with this, there are some problems with "directory only"
ignore rules on container directories. Given "a/*" and "!a/b/c/"
(where the second rule is a directory rule but the first rule is
just a generic prefix rule), then the directory only constraint
was having "a/b/c/d/file" match the first rule and not the second.
This was fixed by having ignore directory-only rules test a rule
against the prefix of a file with LEADINGDIR enabled.
Lastly, spot checks for ignores using `git_ignore_path_is_ignored`
were tested from the top directory down to the bottom to deal with
the containment problem, but this is wrong. We have to test bottom
to top so that negative subdirectory rules will be checked before
parent ignore rules.
This does change the behavior of some existing tests, but it seems
only to bring us more in line with core Git, so I think those
changes are acceptable.
Diffstat (limited to 'src/iterator.h')
-rw-r--r-- | src/iterator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/iterator.h b/src/iterator.h index f67830212..d88ad5191 100644 --- a/src/iterator.h +++ b/src/iterator.h @@ -245,6 +245,8 @@ extern int git_iterator_current_parent_tree( extern bool git_iterator_current_is_ignored(git_iterator *iter); +extern bool git_iterator_current_tree_is_ignored(git_iterator *iter); + extern int git_iterator_cmp( git_iterator *iter, const char *path_prefix); |