]> git.ipfire.org Git - thirdparty/git.git/commitdiff
merge-ort: drop unnecessary show_all_errors from collect_merge_info()
authorElijah Newren <newren@gmail.com>
Tue, 21 Apr 2026 00:26:08 +0000 (00:26 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Apr 2026 23:22:19 +0000 (16:22 -0700)
collect_merge_info() has set info.show_all_errors = 1 since
d2bc1994f363 (merge-ort: implement a very basic collect_merge_info(),
2020-12-13).  This setting was copied from unpack-trees.c where it
controls batching of error messages for porcelain display, but
merge-ort has no such error-batching logic and never needed it.

With show_all_errors set, traverse_trees() captures a negative callback
return but continues processing remaining entries rather than stopping
immediately.  Removing the setting restores the default behavior where
a negative return from collect_merge_info_callback() breaks out of the
traversal loop right away, allowing a future commit to exit early when
a corrupt tree is detected.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
merge-ort.c

index 4b8e32209d9b3ad04d840087aef97ff703f2a35d..74e9636020fe4085024095b1715480cf93daba94 100644 (file)
@@ -1740,7 +1740,6 @@ static int collect_merge_info(struct merge_options *opt,
        setup_traverse_info(&info, opt->priv->toplevel_dir);
        info.fn = collect_merge_info_callback;
        info.data = opt;
-       info.show_all_errors = 1;
 
        if (repo_parse_tree(opt->repo, merge_base) < 0 ||
            repo_parse_tree(opt->repo, side1) < 0 ||