diff options
author | Philip Kelley <phkelley@hotmail.com> | 2012-09-17 15:42:41 -0400 |
---|---|---|
committer | Philip Kelley <phkelley@hotmail.com> | 2012-09-17 15:42:41 -0400 |
commit | ec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1 (patch) | |
tree | 59744c10038258c3993a4eb1b1dfc3896c35b97a /src/ignore.h | |
parent | e8776d30f7edb570f435cf746d712c696b862bdd (diff) | |
download | libgit2-ec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1.tar.gz |
Support for core.ignorecase
Diffstat (limited to 'src/ignore.h')
-rw-r--r-- | src/ignore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ignore.h b/src/ignore.h index 809d2edbd..1d472cc47 100644 --- a/src/ignore.h +++ b/src/ignore.h @@ -23,6 +23,7 @@ typedef struct { git_attr_file *ign_internal; git_vector ign_path; git_vector ign_global; + unsigned int ignore_case:1; } git_ignores; extern int git_ignore__for_path(git_repository *repo, const char *path, git_ignores *ign); |