diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-08-18 12:36:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-18 12:36:25 -0700 |
commit | cc34bb0b0279a79117978cf220d70b1c14da05ca (patch) | |
tree | 83ea20e7109b8d96caf0aeed855656d03968f0df /diff.h | |
parent | 06d11b2e8d9d78d01212024f0f410e4193cbb5bd (diff) | |
parent | 90e14525f22c2980d4375dcb5d79e6d5da293a78 (diff) | |
download | git-cc34bb0b0279a79117978cf220d70b1c14da05ca.tar.gz |
Merge branch 'jl/submodule-ignore-diff'
* jl/submodule-ignore-diff:
Add tests for the diff.ignoreSubmodules config option
Add the 'diff.ignoreSubmodules' config setting
Submodules: Use "ignore" settings from .gitmodules too for diff and status
Submodules: Add the new "ignore" config option for diff and status
Conflicts:
diff.c
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -77,6 +77,7 @@ typedef struct strbuf *(*diff_prefix_fn_t)(struct diff_options *opt, void *data) #define DIFF_OPT_DIRTY_SUBMODULES (1 << 24) #define DIFF_OPT_IGNORE_UNTRACKED_IN_SUBMODULES (1 << 25) #define DIFF_OPT_IGNORE_DIRTY_SUBMODULES (1 << 26) +#define DIFF_OPT_OVERRIDE_SUBMODULE_CONFIG (1 << 27) #define DIFF_OPT_TST(opts, flag) ((opts)->flags & DIFF_OPT_##flag) #define DIFF_OPT_SET(opts, flag) ((opts)->flags |= DIFF_OPT_##flag) |