diff options
author | Russell Belfer <rb@github.com> | 2012-10-02 10:45:40 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-10-02 10:45:40 -0700 |
commit | eada0762ddfad33b6deecd606c23a8cec5a579ea (patch) | |
tree | e38ad114ce66053a018a8de96be1b1a9acfbff6c /include/git2/diff.h | |
parent | 8bc5caccee4ebb0b9239135fe81750f3b72a8e76 (diff) | |
parent | f08c60a51815d262979a9a95d69565e54adbdd80 (diff) | |
download | libgit2-eada0762ddfad33b6deecd606c23a8cec5a579ea.tar.gz |
Merge pull request #939 from pwkelley/ignorecase
Support for the core.ignorecase flag
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r-- | include/git2/diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h index 1c41a54ba..1f7f8ab2a 100644 --- a/include/git2/diff.h +++ b/include/git2/diff.h @@ -47,6 +47,7 @@ enum { GIT_DIFF_INCLUDE_UNMODIFIED = (1 << 9), GIT_DIFF_RECURSE_UNTRACKED_DIRS = (1 << 10), GIT_DIFF_DISABLE_PATHSPEC_MATCH = (1 << 11), + GIT_DIFF_DELTAS_ARE_ICASE = (1 << 12) }; /** |