diff options
author | Russell Belfer <arrbee@arrbee.com> | 2012-03-22 10:44:36 -0700 |
---|---|---|
committer | Russell Belfer <arrbee@arrbee.com> | 2012-03-22 10:44:36 -0700 |
commit | 66142ae03134ef8a45e6bd304c6106a1685c3c99 (patch) | |
tree | 2a938d7439f419e4764e54040d787982efcffa71 /include/git2/diff.h | |
parent | 95340398a1821bd19da1bfe459ba1f375ed89404 (diff) | |
download | libgit2-66142ae03134ef8a45e6bd304c6106a1685c3c99.tar.gz |
New status fixes
This adds support for roughly-right tracking of submodules
(although it does not recurse into submodules to detect
internal modifications a la core git), and it adds support
for including unmodified files in diff iteration if requested.
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r-- | include/git2/diff.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h index 0e7c02fd0..cb3ef4e1b 100644 --- a/include/git2/diff.h +++ b/include/git2/diff.h @@ -39,7 +39,8 @@ enum { GIT_DIFF_IGNORE_SUBMODULES = (1 << 5), GIT_DIFF_PATIENCE = (1 << 6), GIT_DIFF_INCLUDE_IGNORED = (1 << 7), - GIT_DIFF_INCLUDE_UNTRACKED = (1 << 8) + GIT_DIFF_INCLUDE_UNTRACKED = (1 << 8), + GIT_DIFF_INCLUDE_UNMODIFIED = (1 << 9) }; /** |