summaryrefslogtreecommitdiff
path: root/include/git2/diff.h
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2012-04-11 12:38:45 +0200
committerVicent Martí <tanoku@gmail.com>2012-04-11 12:38:45 +0200
commitdcfdb958e2033aa59beb624da4263ce031fbb21e (patch)
treef17365bd6314e8318d143a8f2e57659b31037519 /include/git2/diff.h
parent73fe6a8e20ffbc18ad667ff519c0fb8adf85fc3e (diff)
parentefef3795a2d29f6b99bb9575585bb3fc19c3ed79 (diff)
downloadlibgit2-dcfdb958e2033aa59beb624da4263ce031fbb21e.tar.gz
Merge branch 'new-error-handling' of github.com:libgit2/libgit2 into new-error-handling
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r--include/git2/diff.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h
index 0e7c02fd0..0c9f620c1 100644
--- a/include/git2/diff.h
+++ b/include/git2/diff.h
@@ -39,7 +39,9 @@ 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),
+ GIT_DIFF_RECURSE_UNTRACKED_DIRS = (1 << 10),
};
/**