Johannes Schindelin <johannes.schinde...@gmx.de> writes:

> -     cp.git_cmd = 1;
> +     init_merge_options(&o);
> +
> +     o.branch1 = "HEAD";
> +     his_tree_name = xstrfmt("%.*s", linelen(state->msg), state->msg);
> +     o.branch2 = his_tree_name;
>  
> -     argv_array_pushf(&cp.env_array, "GITHEAD_%s=%.*s",
> -                      sha1_to_hex(his_tree), linelen(state->msg), 
> state->msg);
>       if (state->quiet)
> -             argv_array_push(&cp.env_array, "GIT_MERGE_VERBOSITY=0");
> +             o.verbosity = 0;
>  
> -     argv_array_push(&cp.args, "merge-recursive");
> -     argv_array_push(&cp.args, sha1_to_hex(orig_tree));
> -     argv_array_push(&cp.args, "--");
> -     argv_array_push(&cp.args, sha1_to_hex(our_tree));
> -     argv_array_push(&cp.args, sha1_to_hex(his_tree));
> +     status = merge_recursive_generic(&o, our_tree, his_tree, 1, bases, 
> &result);
> +     if (status < 0)
> +             exit(128);
> +     free(his_tree_name);
>  
> -     status = run_command(&cp) ? (-1) : 0;
> -     discard_cache();
> -     read_cache();
>       return status;
>  }

Is this a correct conversion?

We used to prepare the command line and called run_command() and
without dying returned status with the error status from the
merge-recursive that was spawned by run_command().

The new code does not report failure to the caller and instead dies.

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to