diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-09-25 17:41:42 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-09-25 17:41:42 +0200 |
commit | de813435621b914f2b3e148c6cc94ab0066300c3 (patch) | |
tree | df8dc1ffcdb555e334d310cbb26d34ef12f28aed /diff.h | |
parent | Merge git://repo.or.cz/git-gui (diff) | |
parent | diff --dirstat-by-file: count changed files, not lines (diff) | |
download | git-de813435621b914f2b3e148c6cc94ab0066300c3.tar.xz git-de813435621b914f2b3e148c6cc94ab0066300c3.zip |
Merge branch 'ho/dirstat-by-file'
* ho/dirstat-by-file:
diff --dirstat-by-file: count changed files, not lines
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -64,6 +64,7 @@ typedef void (*diff_format_fn_t)(struct diff_queue_struct *q, #define DIFF_OPT_RELATIVE_NAME (1 << 17) #define DIFF_OPT_IGNORE_SUBMODULES (1 << 18) #define DIFF_OPT_DIRSTAT_CUMULATIVE (1 << 19) +#define DIFF_OPT_DIRSTAT_BY_FILE (1 << 20) #define DIFF_OPT_TST(opts, flag) ((opts)->flags & DIFF_OPT_##flag) #define DIFF_OPT_SET(opts, flag) ((opts)->flags |= DIFF_OPT_##flag) #define DIFF_OPT_CLR(opts, flag) ((opts)->flags &= ~DIFF_OPT_##flag) |