diff options
author | Russell Belfer <rb@github.com> | 2013-03-25 16:40:16 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-03-25 16:40:16 -0700 |
commit | 0c289dd7c6831f4f402f9581b46d0c920053abf9 (patch) | |
tree | 9bfb8c6b15ccea8a8ad673b4f6eb74e1459684e8 /include/git2/diff.h | |
parent | f17951d6ea4ba18c68716a89d7b7464e40ec98f7 (diff) | |
download | libgit2-0c289dd7c6831f4f402f9581b46d0c920053abf9.tar.gz |
Recursing into ignored dirs for diff and status
This implements working versions of GIT_DIFF_RECURSE_IGNORED_DIRS
and GIT_STATUS_OPT_RECURSE_IGNORED_DIRS along with some tests for
the newly available behaviors. This is not turned on by default
for status, but can be accessed via the options to the extended
version of the command.
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r-- | include/git2/diff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h index e49e6e539..d9ceadf20 100644 --- a/include/git2/diff.h +++ b/include/git2/diff.h @@ -123,7 +123,7 @@ typedef enum { * will be marked with only a single entry in the diff list; this flag * adds all files under the directory as IGNORED entries, too. */ - GIT_DIFF_RECURSE_IGNORED_DIRS = (1 << 10), + GIT_DIFF_RECURSE_IGNORED_DIRS = (1 << 18), } git_diff_option_t; /** |