aboutsummaryrefslogtreecommitdiff
path: root/range-diff.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-12-23 09:32:17 -0800
committerJunio C Hamano <gitster@pobox.com>2024-12-23 09:32:17 -0800
commit88e59f8027ed0260584ccc0abd6fe435031614eb (patch)
treea416556f6e4279cb7c80ebbb68de1f3b01feecb9 /range-diff.h
parentc4cc685a62ffc06c86b1ecd1382c1b5cd0166189 (diff)
parent4538338c7edb13a5e818abcfa5739f16ad3dda0c (diff)
downloadgit-88e59f8027ed0260584ccc0abd6fe435031614eb.tar.xz
Merge branch 'js/range-diff-diff-merges'
"git range-diff" learned to optionally show and compare merge commits in the ranges being compared, with the --diff-merges option. * js/range-diff-diff-merges: range-diff: introduce the convenience option `--remerge-diff` range-diff: optionally include merge commits' diffs in the analysis
Diffstat (limited to 'range-diff.h')
-rw-r--r--range-diff.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/range-diff.h b/range-diff.h
index 2f69f6a434..cd85000b5a 100644
--- a/range-diff.h
+++ b/range-diff.h
@@ -16,6 +16,7 @@ struct range_diff_options {
int creation_factor;
unsigned dual_color:1;
unsigned left_only:1, right_only:1;
+ unsigned include_merges:1;
const struct diff_options *diffopt; /* may be NULL */
const struct strvec *other_arg; /* may be NULL */
};