summaryrefslogtreecommitdiff
path: root/include/git2/diff.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r--include/git2/diff.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h
index ebf47e3c0..db2233f82 100644
--- a/include/git2/diff.h
+++ b/include/git2/diff.h
@@ -193,7 +193,10 @@ typedef enum {
GIT_DIFF_SHOW_BINARY = (1 << 30),
/** Include unreadable files in the diff */
- GIT_DIFF_INCLUDE_UNREADABLE = (1 << 31),
+ GIT_DIFF_INCLUDE_UNREADABLE = (1 << 27),
+
+ /** Include unreadable files in the diff */
+ GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED = (1 << 31),
} git_diff_option_t;
/**