From 7b491a7deac7a97f440fb6d29f2f84d5ef797a42 Mon Sep 17 00:00:00 2001 From: Alan Rogers Date: Tue, 3 Jun 2014 17:50:00 -0700 Subject: [PATCH] GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED --- include/git2/diff.h | 5 ++++- src/status.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) 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; /** diff --git a/src/status.c b/src/status.c index 5a592a7c5..e1cb60df9 100644 --- a/src/status.c +++ b/src/status.c @@ -315,6 +315,8 @@ int git_status_list_new( diffopt.flags = diffopt.flags | GIT_DIFF_UPDATE_INDEX; if ((flags & GIT_STATUS_OPT_INCLUDE_UNREADABLE) != 0) diffopt.flags = diffopt.flags | GIT_DIFF_INCLUDE_UNREADABLE; + if ((flags & GIT_STATUS_OPT_INCLUDE_UNREADABLE_AS_UNTRACKED) != 0) + diffopt.flags = diffopt.flags | GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED; if ((flags & GIT_STATUS_OPT_RENAMES_FROM_REWRITES) != 0) findopt.flags = findopt.flags |