diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-03-14 12:01:02 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-14 12:01:02 -0700 |
commit | 868f7d23384931641aa4901aab27f3f23577e63b (patch) | |
tree | 148d5d0a8e4e71487fe598c9196b397c40c934f1 /diff.h | |
parent | d0db9edba0050ada6f6eac68061599690d2a4333 (diff) | |
parent | ddf88fa6166473be15822739e0a12aad4edfbbc5 (diff) | |
download | git-868f7d23384931641aa4901aab27f3f23577e63b.tar.gz |
Merge branch 'nd/diff-stat-with-summary'
"git diff" and friends learned "--compact-summary" that shows the
information usually given with the "--summary" option on the same
line as the diffstat output of the "--stat" option (which saves
vertical space and keeps info on a single path at the same place).
* nd/diff-stat-with-summary:
diff: add --compact-summary
diff.c: refactor pprint_rename() to use strbuf
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -93,6 +93,7 @@ struct diff_flags { unsigned dirstat_by_line:1; unsigned funccontext:1; unsigned default_follow_renames:1; + unsigned stat_with_summary:1; }; static inline void diff_flags_or(struct diff_flags *a, |