diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-14 21:55:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-14 21:55:23 -0700 |
commit | afcb536f288f28bb37acf11a5666a219b8f20200 (patch) | |
tree | 6069497a703de57e566cdbaa2718ba78e855b3b2 /diff.h | |
parent | a3cc31fb059410d6b96786045947bafc2f32ce60 (diff) | |
parent | 84981f9ad963f050abf4fe33ac07d36b4ea90c6d (diff) | |
download | git-afcb536f288f28bb37acf11a5666a219b8f20200.tar.gz git-afcb536f288f28bb37acf11a5666a219b8f20200.tar.xz |
Merge branch 'js/diffstat'
* js/diffstat:
diff --stat: no need to ask funcnames nor context.
diff-options: add --stat (take 2)
diff-options: add --stat (take 2)
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -119,6 +119,7 @@ extern void diffcore_std_no_resolve(struct diff_options *); " -u synonym for -p.\n" \ " --patch-with-raw\n" \ " output both a patch and the diff-raw format.\n" \ +" --stat show diffstat instead of patch.\n" \ " --name-only show only names of changed files.\n" \ " --name-status show names and status of changed files.\n" \ " --full-index show full object name on index lines.\n" \ @@ -142,6 +143,7 @@ extern int diff_queue_is_empty(void); #define DIFF_FORMAT_NO_OUTPUT 3 #define DIFF_FORMAT_NAME 4 #define DIFF_FORMAT_NAME_STATUS 5 +#define DIFF_FORMAT_DIFFSTAT 6 extern void diff_flush(struct diff_options*); |