mirror of
https://github.com/git/git.git
synced 2026-01-10 10:13:33 +00:00
diff-merges: split 'ignore_merges' field
'ignore_merges' was 3-way field that served two distinct purposes that we now assign to 2 new independent flags: 'separate_merges', and 'explicit_diff_merges'. 'separate_merges' tells that we need to output diff format containing separate diff for every parent (as opposed to 'combine_merges'). 'explicit_diff_merges' tells that at least one of diff-merges options has been explicitly specified on the command line, so no defaults should apply. Signed-off-by: Sergey Organov <sorganov@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
6fc944d895
commit
1a2c4d8050
@@ -191,12 +191,13 @@ struct rev_info {
|
||||
match_missing:1,
|
||||
no_commit_id:1,
|
||||
verbose_header:1,
|
||||
explicit_diff_merges: 1,
|
||||
separate_merges: 1,
|
||||
combine_merges:1,
|
||||
combined_all_paths:1,
|
||||
dense_combined_merges:1,
|
||||
first_parent_merges:1,
|
||||
always_show_header:1;
|
||||
int ignore_merges:2;
|
||||
|
||||
/* Format info */
|
||||
int show_notes;
|
||||
|
||||
Reference in New Issue
Block a user