]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/merge.c
merge: teach --autostash option
[thirdparty/git.git] / builtin / merge.c
CommitLineData
1c7b76be
MV
1/*
2 * Builtin "git merge"
3 *
4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
5 *
6 * Based on git-merge.sh by Junio C Hamano.
7 */
8
f8adbec9 9#define USE_THE_INDEX_COMPATIBILITY_MACROS
1c7b76be 10#include "cache.h"
b2141fc1 11#include "config.h"
1c7b76be
MV
12#include "parse-options.h"
13#include "builtin.h"
697cc8ef 14#include "lockfile.h"
1c7b76be
MV
15#include "run-command.h"
16#include "diff.h"
17#include "refs.h"
ec0cb496 18#include "refspec.h"
1c7b76be
MV
19#include "commit.h"
20#include "diffcore.h"
21#include "revision.h"
22#include "unpack-trees.h"
23#include "cache-tree.h"
24#include "dir.h"
25#include "utf8.h"
26#include "log-tree.h"
27#include "color.h"
fcab40a3 28#include "rerere.h"
87091b49 29#include "help.h"
18668f53 30#include "merge-recursive.h"
cfc5789a 31#include "resolve-undo.h"
93e535a5 32#include "remote.h"
898eacd8 33#include "fmt-merge-msg.h"
ba3c69a9 34#include "gpg-interface.h"
75c961b7 35#include "sequencer.h"
02a8cfa4 36#include "string-list.h"
3836d88a 37#include "packfile.h"
adcc94a0 38#include "tag.h"
65b5f948 39#include "alias.h"
b6433555 40#include "branch.h"
64043556 41#include "commit-reach.h"
d540b70c 42#include "wt-status.h"
1c7b76be
MV
43
44#define DEFAULT_TWOHEAD (1<<0)
45#define DEFAULT_OCTOPUS (1<<1)
46#define NO_FAST_FORWARD (1<<2)
47#define NO_TRIVIAL (1<<3)
48
49struct strategy {
50 const char *name;
51 unsigned attr;
52};
53
54static const char * const builtin_merge_usage[] = {
9c9b4f2f 55 N_("git merge [<options>] [<commit>...]"),
962e6295 56 N_("git merge --abort"),
367ff694 57 N_("git merge --continue"),
1c7b76be
MV
58 NULL
59};
60
898eacd8 61static int show_diffstat = 1, shortlog_len = -1, squash;
1d14d0c9 62static int option_commit = -1;
a54841e9 63static int option_edit = -1;
efed0022 64static int allow_trivial = 1, have_message, verify_signatures;
54887b46 65static int check_trust_level = 1;
c1d7036b 66static int overwrite_ignore = 1;
2c47789d 67static struct strbuf merge_msg = STRBUF_INIT;
1c7b76be
MV
68static struct strategy **use_strategies;
69static size_t use_strategies_nr, use_strategies_alloc;
8cc5b290
AP
70static const char **xopts;
71static size_t xopts_nr, xopts_alloc;
1c7b76be 72static const char *branch;
0d8fc3ef 73static char *branch_mergeoptions;
7610fa57 74static int option_renormalize;
7f87aff2 75static int verbosity;
cb6020bb 76static int allow_rerere_auto;
35d2fffd 77static int abort_current_merge;
f3f8311e 78static int quit_current_merge;
367ff694 79static int continue_current_merge;
e379fdf3 80static int allow_unrelated_histories;
99bfc669 81static int show_progress = -1;
a01f7f2b 82static int default_to_upstream = 1;
14d01b4f 83static int signoff;
ba3c69a9 84static const char *sign_commit;
a03b5553 85static int autostash;
a1f3dd7e 86static int no_verify;
1c7b76be
MV
87
88static struct strategy all_strategy[] = {
1c7b76be
MV
89 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
90 { "octopus", DEFAULT_OCTOPUS },
91 { "resolve", 0 },
1c7b76be
MV
92 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
93 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
94};
95
96static const char *pull_twohead, *pull_octopus;
97
a54841e9
MV
98enum ff_type {
99 FF_NO,
100 FF_ALLOW,
101 FF_ONLY
102};
103
104static enum ff_type fast_forward = FF_ALLOW;
105
d540b70c
DL
106static const char *cleanup_arg;
107static enum commit_msg_cleanup_mode cleanup_mode;
108
1c7b76be
MV
109static int option_parse_message(const struct option *opt,
110 const char *arg, int unset)
111{
112 struct strbuf *buf = opt->value;
113
114 if (unset)
115 strbuf_setlen(buf, 0);
74f5b7fb 116 else if (arg) {
ce9d823b 117 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
1c7b76be 118 have_message = 1;
74f5b7fb 119 } else
bacec478 120 return error(_("switch `m' requires a value"));
1c7b76be
MV
121 return 0;
122}
123
f41179f1
NTND
124static enum parse_opt_result option_read_message(struct parse_opt_ctx_t *ctx,
125 const struct option *opt,
3ebbe289 126 const char *arg_not_used,
f41179f1 127 int unset)
920f22e6
JS
128{
129 struct strbuf *buf = opt->value;
130 const char *arg;
131
3ebbe289 132 BUG_ON_OPT_ARG(arg_not_used);
920f22e6
JS
133 if (unset)
134 BUG("-F cannot be negated");
135
136 if (ctx->opt) {
137 arg = ctx->opt;
138 ctx->opt = NULL;
139 } else if (ctx->argc > 1) {
140 ctx->argc--;
141 arg = *++ctx->argv;
142 } else
9440b831 143 return error(_("option `%s' requires a value"), opt->long_name);
920f22e6
JS
144
145 if (buf->len)
146 strbuf_addch(buf, '\n');
147 if (ctx->prefix && !is_absolute_path(arg))
148 arg = prefix_filename(ctx->prefix, arg);
149 if (strbuf_read_file(buf, arg, 0) < 0)
150 return error(_("could not read file '%s'"), arg);
151 have_message = 1;
152
153 return 0;
154}
155
1c7b76be
MV
156static struct strategy *get_strategy(const char *name)
157{
158 int i;
87091b49
MV
159 struct strategy *ret;
160 static struct cmdnames main_cmds, other_cmds;
e321180e 161 static int loaded;
1c7b76be
MV
162
163 if (!name)
164 return NULL;
165
166 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
167 if (!strcmp(name, all_strategy[i].name))
168 return &all_strategy[i];
1719b5e4 169
e321180e 170 if (!loaded) {
87091b49 171 struct cmdnames not_strategies;
e321180e 172 loaded = 1;
87091b49 173
87091b49 174 memset(&not_strategies, 0, sizeof(struct cmdnames));
e321180e 175 load_command_list("git-merge-", &main_cmds, &other_cmds);
87091b49
MV
176 for (i = 0; i < main_cmds.cnt; i++) {
177 int j, found = 0;
178 struct cmdname *ent = main_cmds.names[i];
179 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
180 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
181 && !all_strategy[j].name[ent->len])
182 found = 1;
183 if (!found)
184 add_cmdname(&not_strategies, ent->name, ent->len);
87091b49 185 }
ed874656 186 exclude_cmds(&main_cmds, &not_strategies);
87091b49
MV
187 }
188 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
bacec478
ÆAB
189 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
190 fprintf(stderr, _("Available strategies are:"));
131f9a10
JH
191 for (i = 0; i < main_cmds.cnt; i++)
192 fprintf(stderr, " %s", main_cmds.names[i]->name);
193 fprintf(stderr, ".\n");
194 if (other_cmds.cnt) {
bacec478 195 fprintf(stderr, _("Available custom strategies are:"));
131f9a10
JH
196 for (i = 0; i < other_cmds.cnt; i++)
197 fprintf(stderr, " %s", other_cmds.names[i]->name);
198 fprintf(stderr, ".\n");
199 }
87091b49
MV
200 exit(1);
201 }
202
19d4b416 203 ret = xcalloc(1, sizeof(struct strategy));
87091b49 204 ret->name = xstrdup(name);
52b48ef1 205 ret->attr = NO_TRIVIAL;
87091b49 206 return ret;
1c7b76be
MV
207}
208
209static void append_strategy(struct strategy *s)
210{
211 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
212 use_strategies[use_strategies_nr++] = s;
213}
214
215static int option_parse_strategy(const struct option *opt,
216 const char *name, int unset)
217{
1c7b76be
MV
218 if (unset)
219 return 0;
220
1719b5e4 221 append_strategy(get_strategy(name));
1c7b76be
MV
222 return 0;
223}
224
8cc5b290
AP
225static int option_parse_x(const struct option *opt,
226 const char *arg, int unset)
227{
228 if (unset)
229 return 0;
230
231 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
232 xopts[xopts_nr++] = xstrdup(arg);
233 return 0;
234}
235
1c7b76be
MV
236static int option_parse_n(const struct option *opt,
237 const char *arg, int unset)
238{
517fe807 239 BUG_ON_OPT_ARG(arg);
1c7b76be
MV
240 show_diffstat = unset;
241 return 0;
242}
243
244static struct option builtin_merge_options[] = {
245 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
962e6295 246 N_("do not show a diffstat at the end of the merge"),
1c7b76be 247 PARSE_OPT_NOARG, option_parse_n },
d5d09d47 248 OPT_BOOL(0, "stat", &show_diffstat,
962e6295 249 N_("show a diffstat at the end of the merge")),
d5d09d47 250 OPT_BOOL(0, "summary", &show_diffstat, N_("(synonym to --stat)")),
962e6295
NTND
251 { OPTION_INTEGER, 0, "log", &shortlog_len, N_("n"),
252 N_("add (at most <n>) entries from shortlog to merge commit message"),
96e9420c 253 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
d5d09d47 254 OPT_BOOL(0, "squash", &squash,
962e6295 255 N_("create a single commit instead of doing a merge")),
d5d09d47 256 OPT_BOOL(0, "commit", &option_commit,
962e6295 257 N_("perform a commit if the merge succeeds (default)")),
f8246281 258 OPT_BOOL('e', "edit", &option_edit,
962e6295 259 N_("edit message before committing")),
d540b70c 260 OPT_CLEANUP(&cleanup_arg),
a54841e9 261 OPT_SET_INT(0, "ff", &fast_forward, N_("allow fast-forward (default)"), FF_ALLOW),
3e4a67b4
NTND
262 OPT_SET_INT_F(0, "ff-only", &fast_forward,
263 N_("abort if fast-forward is not possible"),
264 FF_ONLY, PARSE_OPT_NONEG),
cb6020bb 265 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
efed0022 266 OPT_BOOL(0, "verify-signatures", &verify_signatures,
c8bb9d2e 267 N_("verify that the named commit has a valid GPG signature")),
962e6295
NTND
268 OPT_CALLBACK('s', "strategy", &use_strategies, N_("strategy"),
269 N_("merge strategy to use"), option_parse_strategy),
270 OPT_CALLBACK('X', "strategy-option", &xopts, N_("option=value"),
271 N_("option for selected merge strategy"), option_parse_x),
272 OPT_CALLBACK('m', "message", &merge_msg, N_("message"),
273 N_("merge commit message (for a non-fast-forward merge)"),
1c7b76be 274 option_parse_message),
920f22e6
JS
275 { OPTION_LOWLEVEL_CALLBACK, 'F', "file", &merge_msg, N_("path"),
276 N_("read message from file"), PARSE_OPT_NONEG,
bf3ff338 277 NULL, 0, option_read_message },
7f87aff2 278 OPT__VERBOSITY(&verbosity),
d5d09d47 279 OPT_BOOL(0, "abort", &abort_current_merge,
962e6295 280 N_("abort the current in-progress merge")),
f3f8311e
NTND
281 OPT_BOOL(0, "quit", &quit_current_merge,
282 N_("--abort but leave index and working tree alone")),
367ff694
CP
283 OPT_BOOL(0, "continue", &continue_current_merge,
284 N_("continue the current in-progress merge")),
e379fdf3
JH
285 OPT_BOOL(0, "allow-unrelated-histories", &allow_unrelated_histories,
286 N_("allow merging unrelated histories")),
962e6295 287 OPT_SET_INT(0, "progress", &show_progress, N_("force progress reporting"), 1),
e703d711 288 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
962e6295 289 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
a03b5553 290 OPT_AUTOSTASH(&autostash),
d5d09d47 291 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore, N_("update ignored files (default)")),
14d01b4f 292 OPT_BOOL(0, "signoff", &signoff, N_("add Signed-off-by:")),
bc40ce4d 293 OPT_BOOL(0, "no-verify", &no_verify, N_("bypass pre-merge-commit and commit-msg hooks")),
1c7b76be
MV
294 OPT_END()
295};
296
52684310 297static int save_state(struct object_id *stash)
1c7b76be
MV
298{
299 int len;
d3180279 300 struct child_process cp = CHILD_PROCESS_INIT;
1c7b76be
MV
301 struct strbuf buffer = STRBUF_INIT;
302 const char *argv[] = {"stash", "create", NULL};
150888e2 303 int rc = -1;
1c7b76be 304
1c7b76be
MV
305 cp.argv = argv;
306 cp.out = -1;
307 cp.git_cmd = 1;
308
309 if (start_command(&cp))
bacec478 310 die(_("could not run stash."));
1c7b76be
MV
311 len = strbuf_read(&buffer, cp.out, 1024);
312 close(cp.out);
313
314 if (finish_command(&cp) || len < 0)
bacec478 315 die(_("stash failed"));
b4fd9406 316 else if (!len) /* no changes */
150888e2 317 goto out;
1c7b76be 318 strbuf_setlen(&buffer, buffer.len-1);
52684310 319 if (get_oid(buffer.buf, stash))
bacec478 320 die(_("not a valid object: %s"), buffer.buf);
150888e2
RS
321 rc = 0;
322out:
323 strbuf_release(&buffer);
324 return rc;
1c7b76be
MV
325}
326
cb91022c 327static void read_empty(const struct object_id *oid, int verbose)
172b6428
CB
328{
329 int i = 0;
330 const char *args[7];
331
332 args[i++] = "read-tree";
333 if (verbose)
334 args[i++] = "-v";
335 args[i++] = "-m";
336 args[i++] = "-u";
cb91022c 337 args[i++] = empty_tree_oid_hex();
338 args[i++] = oid_to_hex(oid);
172b6428
CB
339 args[i] = NULL;
340
341 if (run_command_v_opt(args, RUN_GIT_CMD))
bacec478 342 die(_("read-tree failed"));
172b6428
CB
343}
344
cb91022c 345static void reset_hard(const struct object_id *oid, int verbose)
1c7b76be
MV
346{
347 int i = 0;
348 const char *args[6];
349
350 args[i++] = "read-tree";
351 if (verbose)
352 args[i++] = "-v";
353 args[i++] = "--reset";
354 args[i++] = "-u";
cb91022c 355 args[i++] = oid_to_hex(oid);
1c7b76be
MV
356 args[i] = NULL;
357
358 if (run_command_v_opt(args, RUN_GIT_CMD))
bacec478 359 die(_("read-tree failed"));
1c7b76be
MV
360}
361
52684310 362static void restore_state(const struct object_id *head,
363 const struct object_id *stash)
1c7b76be 364{
f285a2d7 365 struct strbuf sb = STRBUF_INIT;
1c7b76be
MV
366 const char *args[] = { "stash", "apply", NULL, NULL };
367
52684310 368 if (is_null_oid(stash))
1c7b76be
MV
369 return;
370
cb91022c 371 reset_hard(head, 1);
1c7b76be 372
52684310 373 args[2] = oid_to_hex(stash);
1c7b76be
MV
374
375 /*
376 * It is OK to ignore error here, for example when there was
377 * nothing to restore.
378 */
379 run_command_v_opt(args, RUN_GIT_CMD);
380
381 strbuf_release(&sb);
382 refresh_cache(REFRESH_QUIET);
383}
384
385/* This is called when no merge was necessary. */
386static void finish_up_to_date(const char *msg)
387{
7f87aff2 388 if (verbosity >= 0)
bacec478 389 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
b6433555 390 remove_merge_branch_state(the_repository);
1c7b76be
MV
391}
392
4c57bd27 393static void squash_message(struct commit *commit, struct commit_list *remoteheads)
1c7b76be
MV
394{
395 struct rev_info rev;
f285a2d7 396 struct strbuf out = STRBUF_INIT;
1c7b76be 397 struct commit_list *j;
dd2e794a 398 struct pretty_print_context ctx = {0};
1c7b76be 399
bacec478 400 printf(_("Squash commit -- not updating HEAD\n"));
1c7b76be 401
2abf3503 402 repo_init_revisions(the_repository, &rev, NULL);
1c7b76be
MV
403 rev.ignore_merges = 1;
404 rev.commit_format = CMIT_FMT_MEDIUM;
405
1c7b76be
MV
406 commit->object.flags |= UNINTERESTING;
407 add_pending_object(&rev, &commit->object, NULL);
408
409 for (j = remoteheads; j; j = j->next)
410 add_pending_object(&rev, &j->item->object, NULL);
411
412 setup_revisions(0, NULL, &rev, NULL);
413 if (prepare_revision_walk(&rev))
bacec478 414 die(_("revision walk setup failed"));
1c7b76be 415
dd2e794a
TR
416 ctx.abbrev = rev.abbrev;
417 ctx.date_mode = rev.date_mode;
6bf13944 418 ctx.fmt = rev.commit_format;
dd2e794a 419
1c7b76be
MV
420 strbuf_addstr(&out, "Squashed commit of the following:\n");
421 while ((commit = get_revision(&rev)) != NULL) {
422 strbuf_addch(&out, '\n');
423 strbuf_addf(&out, "commit %s\n",
f2fd0760 424 oid_to_hex(&commit->object.oid));
6bf13944 425 pretty_print_commit(&ctx, commit, &out);
1c7b76be 426 }
102de880 427 write_file_buf(git_path_squash_msg(the_repository), out.buf, out.len);
1c7b76be
MV
428 strbuf_release(&out);
429}
430
894642f6 431static void finish(struct commit *head_commit,
4c57bd27 432 struct commit_list *remoteheads,
52684310 433 const struct object_id *new_head, const char *msg)
1c7b76be 434{
f285a2d7 435 struct strbuf reflog_message = STRBUF_INIT;
52684310 436 const struct object_id *head = &head_commit->object.oid;
1c7b76be 437
1c7b76be
MV
438 if (!msg)
439 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
440 else {
7f87aff2
TA
441 if (verbosity >= 0)
442 printf("%s\n", msg);
1c7b76be
MV
443 strbuf_addf(&reflog_message, "%s: %s",
444 getenv("GIT_REFLOG_ACTION"), msg);
445 }
446 if (squash) {
4c57bd27 447 squash_message(head_commit, remoteheads);
1c7b76be 448 } else {
7f87aff2 449 if (verbosity >= 0 && !merge_msg.len)
bacec478 450 printf(_("No merge message -- not updating HEAD\n"));
1c7b76be
MV
451 else {
452 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
ae077771 453 update_ref(reflog_message.buf, "HEAD", new_head, head,
454 0, UPDATE_REFS_DIE_ON_ERR);
1c7b76be
MV
455 /*
456 * We ignore errors in 'gc --auto', since the
457 * user should see them.
458 */
2d511cfc 459 close_object_store(the_repository->objects);
1c7b76be
MV
460 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
461 }
462 }
463 if (new_head && show_diffstat) {
464 struct diff_options opts;
e6757652 465 repo_diff_setup(the_repository, &opts);
7a7159ac 466 opts.stat_width = -1; /* use full terminal width */
df44483a 467 opts.stat_graph_width = -1; /* respect statGraphWidth config */
1c7b76be
MV
468 opts.output_format |=
469 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
470 opts.detect_rename = DIFF_DETECT_RENAME;
28452655 471 diff_setup_done(&opts);
66f414f8 472 diff_tree_oid(head, new_head, "", &opts);
1c7b76be
MV
473 diffcore_std(&opts);
474 diff_flush(&opts);
475 }
476
477 /* Run a post-merge hook */
15048f8a 478 run_hook_le(NULL, "post-merge", squash ? "1" : "0", NULL);
1c7b76be 479
a03b5553 480 apply_autostash(git_path_merge_autostash(the_repository));
1c7b76be
MV
481 strbuf_release(&reflog_message);
482}
483
484/* Get the name for the merge commit's message. */
485static void merge_name(const char *remote, struct strbuf *msg)
486{
ae8e4c9c 487 struct commit *remote_head;
52684310 488 struct object_id branch_head;
f285a2d7 489 struct strbuf buf = STRBUF_INIT;
c9717ee9 490 struct strbuf bname = STRBUF_INIT;
e2e5ac23 491 struct merge_remote_desc *desc;
1c7b76be 492 const char *ptr;
751c5974 493 char *found_ref;
1c7b76be
MV
494 int len, early;
495
0e9f62da 496 strbuf_branchname(&bname, remote, 0);
a552de75 497 remote = bname.buf;
c9717ee9 498
52684310 499 oidclr(&branch_head);
ae8e4c9c 500 remote_head = get_merge_parent(remote);
1c7b76be 501 if (!remote_head)
bacec478 502 die(_("'%s' does not point to a commit"), remote);
1c7b76be 503
cca5fa64 504 if (dwim_ref(remote, strlen(remote), &branch_head, &found_ref) > 0) {
59556548 505 if (starts_with(found_ref, "refs/heads/")) {
751c5974 506 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
52684310 507 oid_to_hex(&branch_head), remote);
751c5974
JK
508 goto cleanup;
509 }
59556548 510 if (starts_with(found_ref, "refs/tags/")) {
57b58db7 511 strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
52684310 512 oid_to_hex(&branch_head), remote);
57b58db7
JH
513 goto cleanup;
514 }
59556548 515 if (starts_with(found_ref, "refs/remotes/")) {
13931236 516 strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
52684310 517 oid_to_hex(&branch_head), remote);
69a8b7c7
JK
518 goto cleanup;
519 }
1c7b76be
MV
520 }
521
522 /* See if remote matches <name>^^^.. or <name>~<number> */
523 for (len = 0, ptr = remote + strlen(remote);
524 remote < ptr && ptr[-1] == '^';
525 ptr--)
526 len++;
527 if (len)
528 early = 1;
529 else {
530 early = 0;
531 ptr = strrchr(remote, '~');
532 if (ptr) {
533 int seen_nonzero = 0;
534
535 len++; /* count ~ */
536 while (*++ptr && isdigit(*ptr)) {
537 seen_nonzero |= (*ptr != '0');
538 len++;
539 }
540 if (*ptr)
541 len = 0; /* not ...~<number> */
542 else if (seen_nonzero)
543 early = 1;
544 else if (len == 1)
545 early = 1; /* "name~" is "name~1"! */
546 }
547 }
548 if (len) {
549 struct strbuf truname = STRBUF_INIT;
1016658d 550 strbuf_addf(&truname, "refs/heads/%s", remote);
9b6bf4d5 551 strbuf_setlen(&truname, truname.len - len);
c6893323 552 if (ref_exists(truname.buf)) {
1c7b76be
MV
553 strbuf_addf(msg,
554 "%s\t\tbranch '%s'%s of .\n",
c368dde9 555 oid_to_hex(&remote_head->object.oid),
9b6bf4d5 556 truname.buf + 11,
1c7b76be 557 (early ? " (early part)" : ""));
c9717ee9
JH
558 strbuf_release(&truname);
559 goto cleanup;
1c7b76be 560 }
1016658d 561 strbuf_release(&truname);
1c7b76be 562 }
2d1495fe 563
e2e5ac23
NTND
564 desc = merge_remote_util(remote_head);
565 if (desc && desc->obj && desc->obj->type == OBJ_TAG) {
566 strbuf_addf(msg, "%s\t\t%s '%s'\n",
567 oid_to_hex(&desc->obj->oid),
568 type_name(desc->obj->type),
569 remote);
570 goto cleanup;
2d1495fe
JH
571 }
572
1c7b76be 573 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
c368dde9 574 oid_to_hex(&remote_head->object.oid), remote);
c9717ee9
JH
575cleanup:
576 strbuf_release(&buf);
577 strbuf_release(&bname);
1c7b76be
MV
578}
579
0d8fc3ef
JH
580static void parse_branch_merge_options(char *bmo)
581{
582 const char **argv;
583 int argc;
584
585 if (!bmo)
586 return;
587 argc = split_cmdline(bmo, &argv);
588 if (argc < 0)
c7fe5b61 589 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
a7412ae1 590 _(split_cmdline_strerror(argc)));
2756ca43 591 REALLOC_ARRAY(argv, argc + 2);
f331ab9d 592 MOVE_ARRAY(argv + 1, argv, argc + 1);
0d8fc3ef
JH
593 argc++;
594 argv[0] = "branch.*.mergeoptions";
595 parse_options(argc, argv, NULL, builtin_merge_options,
596 builtin_merge_usage, 0);
597 free(argv);
598}
599
186458b1 600static int git_merge_config(const char *k, const char *v, void *cb)
1c7b76be 601{
898eacd8
JH
602 int status;
603
59556548
CC
604 if (branch && starts_with(k, "branch.") &&
605 starts_with(k + 7, branch) &&
1c7b76be 606 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
0d8fc3ef
JH
607 free(branch_mergeoptions);
608 branch_mergeoptions = xstrdup(v);
609 return 0;
1c7b76be
MV
610 }
611
612 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
613 show_diffstat = git_config_bool(k, v);
ca779e82
HJI
614 else if (!strcmp(k, "merge.verifysignatures"))
615 verify_signatures = git_config_bool(k, v);
1c7b76be
MV
616 else if (!strcmp(k, "pull.twohead"))
617 return git_config_string(&pull_twohead, k, v);
618 else if (!strcmp(k, "pull.octopus"))
619 return git_config_string(&pull_octopus, k, v);
d540b70c
DL
620 else if (!strcmp(k, "commit.cleanup"))
621 return git_config_string(&cleanup_arg, k, v);
7610fa57
JN
622 else if (!strcmp(k, "merge.renormalize"))
623 option_renormalize = git_config_bool(k, v);
898eacd8 624 else if (!strcmp(k, "merge.ff")) {
89576613 625 int boolval = git_parse_maybe_bool(v);
f23e8dec 626 if (0 <= boolval) {
a54841e9 627 fast_forward = boolval ? FF_ALLOW : FF_NO;
f23e8dec 628 } else if (v && !strcmp(v, "only")) {
a54841e9 629 fast_forward = FF_ONLY;
f23e8dec
JH
630 } /* do not barf on values from future versions of git */
631 return 0;
93e535a5
JH
632 } else if (!strcmp(k, "merge.defaulttoupstream")) {
633 default_to_upstream = git_config_bool(k, v);
634 return 0;
d95bfb12
NV
635 } else if (!strcmp(k, "commit.gpgsign")) {
636 sign_commit = git_config_bool(k, v) ? "" : NULL;
637 return 0;
54887b46
HJI
638 } else if (!strcmp(k, "gpg.mintrustlevel")) {
639 check_trust_level = 0;
a03b5553
DL
640 } else if (!strcmp(k, "merge.autostash")) {
641 autostash = git_config_bool(k, v);
642 return 0;
96e9420c 643 }
ba3c69a9 644
898eacd8 645 status = fmt_merge_msg_config(k, v, cb);
5de89d3a
JH
646 if (status)
647 return status;
ba3c69a9 648 status = git_gpg_config(k, v, NULL);
898eacd8
JH
649 if (status)
650 return status;
1c7b76be
MV
651 return git_diff_ui_config(k, v, cb);
652}
653
52684310 654static int read_tree_trivial(struct object_id *common, struct object_id *head,
655 struct object_id *one)
1c7b76be
MV
656{
657 int i, nr_trees = 0;
658 struct tree *trees[MAX_UNPACK_TREES];
659 struct tree_desc t[MAX_UNPACK_TREES];
660 struct unpack_trees_options opts;
661
662 memset(&opts, 0, sizeof(opts));
663 opts.head_idx = 2;
664 opts.src_index = &the_index;
665 opts.dst_index = &the_index;
666 opts.update = 1;
667 opts.verbose_update = 1;
668 opts.trivial_merges_only = 1;
669 opts.merge = 1;
a9dbc179 670 trees[nr_trees] = parse_tree_indirect(common);
1c7b76be
MV
671 if (!trees[nr_trees++])
672 return -1;
a9dbc179 673 trees[nr_trees] = parse_tree_indirect(head);
1c7b76be
MV
674 if (!trees[nr_trees++])
675 return -1;
a9dbc179 676 trees[nr_trees] = parse_tree_indirect(one);
1c7b76be
MV
677 if (!trees[nr_trees++])
678 return -1;
679 opts.fn = threeway_merge;
680 cache_tree_free(&active_cache_tree);
681 for (i = 0; i < nr_trees; i++) {
682 parse_tree(trees[i]);
683 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
684 }
685 if (unpack_trees(nr_trees, t, &opts))
686 return -1;
687 return 0;
688}
689
52684310 690static void write_tree_trivial(struct object_id *oid)
1c7b76be 691{
fc5cb99f 692 if (write_cache_as_tree(oid, 0, NULL))
bacec478 693 die(_("git write-tree failed to write a tree"));
1c7b76be
MV
694}
695
3f9083cd 696static int try_merge_strategy(const char *strategy, struct commit_list *common,
4c57bd27 697 struct commit_list *remoteheads,
b4391657 698 struct commit *head)
3f9083cd 699{
b4391657 700 const char *head_arg = "HEAD";
668f26ff 701
e080b345 702 if (refresh_and_write_cache(REFRESH_QUIET, SKIP_IF_UNCHANGED, 0) < 0)
bacec478 703 return error(_("Unable to write index."));
1c7b76be 704
18668f53 705 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
e080b345 706 struct lock_file lock = LOCK_INIT;
3f9083cd 707 int clean, x;
18668f53 708 struct commit *result;
18668f53
MV
709 struct commit_list *reversed = NULL;
710 struct merge_options o;
3f9083cd 711 struct commit_list *j;
18668f53
MV
712
713 if (remoteheads->next) {
bacec478 714 error(_("Not handling anything other than two heads merge."));
18668f53
MV
715 return 2;
716 }
717
0d6caa2d 718 init_merge_options(&o, the_repository);
18668f53 719 if (!strcmp(strategy, "subtree"))
85e51b78 720 o.subtree_shift = "";
8cc5b290 721
7610fa57 722 o.renormalize = option_renormalize;
99bfc669
JK
723 o.show_rename_progress =
724 show_progress == -1 ? isatty(2) : show_progress;
7610fa57 725
635a7bb1
JN
726 for (x = 0; x < xopts_nr; x++)
727 if (parse_merge_opt(&o, xopts[x]))
bacec478 728 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
18668f53
MV
729
730 o.branch1 = head_arg;
ae8e4c9c 731 o.branch2 = merge_remote_util(remoteheads->item)->name;
18668f53
MV
732
733 for (j = common; j; j = j->next)
734 commit_list_insert(j->item, &reversed);
735
b3e83cc7 736 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
894642f6 737 clean = merge_recursive(&o, head,
18668f53 738 remoteheads->item, reversed, &result);
f241ff0d
JS
739 if (clean < 0)
740 exit(128);
61000814
741 if (write_locked_index(&the_index, &lock,
742 COMMIT_LOCK | SKIP_IF_UNCHANGED))
1a07e59c 743 die(_("unable to write %s"), get_index_file());
18668f53
MV
744 return clean ? 0 : 1;
745 } else {
7e196c3a
NTND
746 return try_merge_command(the_repository,
747 strategy, xopts_nr, xopts,
748 common, head_arg, remoteheads);
18668f53 749 }
1c7b76be
MV
750}
751
752static void count_diff_files(struct diff_queue_struct *q,
753 struct diff_options *opt, void *data)
754{
755 int *count = data;
756
757 (*count) += q->nr;
758}
759
760static int count_unmerged_entries(void)
761{
1c7b76be
MV
762 int i, ret = 0;
763
be6ff819
JH
764 for (i = 0; i < active_nr; i++)
765 if (ce_stage(active_cache[i]))
1c7b76be
MV
766 ret++;
767
768 return ret;
769}
770
1c7b76be
MV
771static void add_strategies(const char *string, unsigned attr)
772{
02a8cfa4
RS
773 int i;
774
775 if (string) {
776 struct string_list list = STRING_LIST_INIT_DUP;
777 struct string_list_item *item;
778 string_list_split(&list, string, ' ', -1);
779 for_each_string_list_item(item, &list)
780 append_strategy(get_strategy(item->string));
781 string_list_clear(&list, 0);
1c7b76be
MV
782 return;
783 }
784 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
785 if (all_strategy[i].attr & attr)
786 append_strategy(&all_strategy[i]);
787
788}
789
66f4b98a 790static void read_merge_msg(struct strbuf *msg)
65969d43 791{
102de880 792 const char *filename = git_path_merge_msg(the_repository);
66f4b98a 793 strbuf_reset(msg);
418c9b17
JN
794 if (strbuf_read_file(msg, filename, 0) < 0)
795 die_errno(_("Could not read from '%s'"), filename);
65969d43
JS
796}
797
4c57bd27
JH
798static void write_merge_state(struct commit_list *);
799static void abort_commit(struct commit_list *remoteheads, const char *err_msg)
65969d43 800{
66f4b98a
JS
801 if (err_msg)
802 error("%s", err_msg);
803 fprintf(stderr,
804 _("Not committing merge; use 'git commit' to complete the merge.\n"));
4c57bd27 805 write_merge_state(remoteheads);
66f4b98a
JS
806 exit(1);
807}
808
f26af3fc
TR
809static const char merge_editor_comment[] =
810N_("Please enter a commit message to explain why this merge is necessary,\n"
811 "especially if it merges an updated upstream into a topic branch.\n"
d540b70c
DL
812 "\n");
813
814static const char scissors_editor_comment[] =
815N_("An empty message aborts the commit.\n");
816
817static const char no_scissors_editor_comment[] =
818N_("Lines starting with '%c' will be ignored, and an empty message aborts\n"
f26af3fc
TR
819 "the commit.\n");
820
9d89b355 821static void write_merge_heads(struct commit_list *);
4c57bd27 822static void prepare_to_commit(struct commit_list *remoteheads)
66f4b98a
JS
823{
824 struct strbuf msg = STRBUF_INIT;
6098817f
MG
825 const char *index_file = get_index_file();
826
bc40ce4d 827 if (!no_verify && run_commit_hook(0 < option_edit, index_file, "pre-merge-commit", NULL))
6098817f
MG
828 abort_commit(remoteheads, NULL);
829 /*
830 * Re-read the index as pre-merge-commit hook could have updated it,
831 * and write it out as a tree. We must do this before we invoke
832 * the editor and after we invoke run_status above.
833 */
834 if (find_hook("pre-merge-commit"))
835 discard_cache();
836 read_cache_from(index_file);
66f4b98a 837 strbuf_addbuf(&msg, &merge_msg);
62dc42b9
MG
838 if (squash)
839 BUG("the control must not reach here under --squash");
d540b70c
DL
840 if (0 < option_edit) {
841 strbuf_addch(&msg, '\n');
842 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
843 wt_status_append_cut_line(&msg);
844 strbuf_commented_addf(&msg, "\n");
845 }
846 strbuf_commented_addf(&msg, _(merge_editor_comment));
847 strbuf_commented_addf(&msg, _(cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS ?
848 scissors_editor_comment :
849 no_scissors_editor_comment), comment_line_char);
850 }
14d01b4f
ŁG
851 if (signoff)
852 append_signoff(&msg, ignore_non_trailer(msg.buf, msg.len), 0);
9d89b355 853 write_merge_heads(remoteheads);
102de880 854 write_file_buf(git_path_merge_msg(the_repository), msg.buf, msg.len);
0a3beb0e 855 if (run_commit_hook(0 < option_edit, get_index_file(), "prepare-commit-msg",
102de880 856 git_path_merge_msg(the_repository), "merge", NULL))
3e4141d0 857 abort_commit(remoteheads, NULL);
f8246281 858 if (0 < option_edit) {
102de880 859 if (launch_editor(git_path_merge_msg(the_repository), NULL, NULL))
4c57bd27 860 abort_commit(remoteheads, NULL);
66f4b98a 861 }
f8b86359 862
a1f3dd7e 863 if (!no_verify && run_commit_hook(0 < option_edit, get_index_file(),
f8b86359 864 "commit-msg",
102de880 865 git_path_merge_msg(the_repository), NULL))
f8b86359
SB
866 abort_commit(remoteheads, NULL);
867
66f4b98a 868 read_merge_msg(&msg);
d540b70c 869 cleanup_message(&msg, cleanup_mode, 0);
66f4b98a 870 if (!msg.len)
4c57bd27 871 abort_commit(remoteheads, _("Empty commit message."));
66f4b98a
JS
872 strbuf_release(&merge_msg);
873 strbuf_addbuf(&merge_msg, &msg);
874 strbuf_release(&msg);
65969d43
JS
875}
876
4c57bd27 877static int merge_trivial(struct commit *head, struct commit_list *remoteheads)
1c7b76be 878{
52684310 879 struct object_id result_tree, result_commit;
910a09a7 880 struct commit_list *parents, **pptr = &parents;
40d71940 881
e080b345 882 if (refresh_and_write_cache(REFRESH_QUIET, SKIP_IF_UNCHANGED, 0) < 0)
40d71940 883 return error(_("Unable to write index."));
1c7b76be 884
52684310 885 write_tree_trivial(&result_tree);
157efde1 886 printf(_("Wonderful.\n"));
910a09a7
RS
887 pptr = commit_list_append(head, pptr);
888 pptr = commit_list_append(remoteheads->item, pptr);
4c57bd27 889 prepare_to_commit(remoteheads);
5078f344
PO
890 if (commit_tree(merge_msg.buf, merge_msg.len, &result_tree, parents,
891 &result_commit, NULL, sign_commit))
6b3c4c05 892 die(_("failed to write commit object"));
52684310 893 finish(head, remoteheads, &result_commit, "In-index merge");
b6433555 894 remove_merge_branch_state(the_repository);
1c7b76be
MV
895 return 0;
896}
897
894642f6 898static int finish_automerge(struct commit *head,
e78cbf8c 899 int head_subsumed,
894642f6 900 struct commit_list *common,
4c57bd27 901 struct commit_list *remoteheads,
52684310 902 struct object_id *result_tree,
1c7b76be
MV
903 const char *wt_strategy)
904{
e78cbf8c 905 struct commit_list *parents = NULL;
1c7b76be 906 struct strbuf buf = STRBUF_INIT;
52684310 907 struct object_id result_commit;
1c7b76be 908
f00abe6a 909 write_tree_trivial(result_tree);
1c7b76be 910 free_commit_list(common);
e78cbf8c 911 parents = remoteheads;
a54841e9 912 if (!head_subsumed || fast_forward == FF_NO)
894642f6 913 commit_list_insert(head, &parents);
4c57bd27 914 prepare_to_commit(remoteheads);
5078f344
PO
915 if (commit_tree(merge_msg.buf, merge_msg.len, result_tree, parents,
916 &result_commit, NULL, sign_commit))
6b3c4c05 917 die(_("failed to write commit object"));
f23101bf 918 strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
52684310 919 finish(head, remoteheads, &result_commit, buf.buf);
1c7b76be 920 strbuf_release(&buf);
b6433555 921 remove_merge_branch_state(the_repository);
1c7b76be
MV
922 return 0;
923}
924
08e3ce5a 925static int suggest_conflicts(void)
1c7b76be 926{
418c9b17 927 const char *filename;
1c7b76be 928 FILE *fp;
75c961b7 929 struct strbuf msgbuf = STRBUF_INIT;
1c7b76be 930
102de880 931 filename = git_path_merge_msg(the_repository);
23a9e071 932 fp = xfopen(filename, "a");
75c961b7 933
1055997e
DL
934 /*
935 * We can't use cleanup_mode because if we're not using the editor,
936 * get_cleanup_mode will return COMMIT_MSG_CLEANUP_SPACE instead, even
937 * though the message is meant to be processed later by git-commit.
938 * Thus, we will get the cleanup mode which is returned when we _are_
939 * using an editor.
940 */
1a2b985f
DL
941 append_conflicts_hint(&the_index, &msgbuf,
942 get_cleanup_mode(cleanup_arg, 1));
75c961b7 943 fputs(msgbuf.buf, fp);
8d025b7c 944 strbuf_release(&msgbuf);
1c7b76be 945 fclose(fp);
35843b11 946 repo_rerere(the_repository, allow_rerere_auto);
bacec478
ÆAB
947 printf(_("Automatic merge failed; "
948 "fix conflicts and then commit the result.\n"));
1c7b76be
MV
949 return 1;
950}
951
1c7b76be
MV
952static int evaluate_result(void)
953{
954 int cnt = 0;
955 struct rev_info rev;
956
1c7b76be 957 /* Check how many files differ. */
2abf3503 958 repo_init_revisions(the_repository, &rev, "");
1c7b76be
MV
959 setup_revisions(0, NULL, &rev, NULL);
960 rev.diffopt.output_format |=
961 DIFF_FORMAT_CALLBACK;
962 rev.diffopt.format_callback = count_diff_files;
963 rev.diffopt.format_callback_data = &cnt;
964 run_diff_files(&rev, 0);
965
966 /*
967 * Check how many unmerged entries are
968 * there.
969 */
970 cnt += count_unmerged_entries();
971
972 return cnt;
973}
974
93e535a5 975/*
d6ac1d21 976 * Pretend as if the user told us to merge with the remote-tracking
93e535a5
JH
977 * branch we have for the upstream of the current branch
978 */
979static int setup_with_upstream(const char ***argv)
980{
981 struct branch *branch = branch_get(NULL);
982 int i;
983 const char **args;
984
985 if (!branch)
c7f426d4 986 die(_("No current branch."));
9e3751d4 987 if (!branch->remote_name)
c7f426d4 988 die(_("No remote for the current branch."));
93e535a5 989 if (!branch->merge_nr)
c7f426d4 990 die(_("No default upstream defined for the current branch."));
93e535a5 991
50a6c8ef 992 args = xcalloc(st_add(branch->merge_nr, 1), sizeof(char *));
93e535a5
JH
993 for (i = 0; i < branch->merge_nr; i++) {
994 if (!branch->merge[i]->dst)
d6ac1d21 995 die(_("No remote-tracking branch for %s from %s"),
93e535a5
JH
996 branch->merge[i]->src, branch->remote_name);
997 args[i] = branch->merge[i]->dst;
998 }
999 args[i] = NULL;
1000 *argv = args;
1001 return i;
1002}
1003
8e6a6bb3 1004static void write_merge_heads(struct commit_list *remoteheads)
66f4b98a 1005{
66f4b98a
JS
1006 struct commit_list *j;
1007 struct strbuf buf = STRBUF_INIT;
1008
274a5c06 1009 for (j = remoteheads; j; j = j->next) {
f2fd0760 1010 struct object_id *oid;
274a5c06 1011 struct commit *c = j->item;
e2e5ac23
NTND
1012 struct merge_remote_desc *desc;
1013
1014 desc = merge_remote_util(c);
1015 if (desc && desc->obj) {
1016 oid = &desc->obj->oid;
274a5c06 1017 } else {
f2fd0760 1018 oid = &c->object.oid;
274a5c06 1019 }
f2fd0760 1020 strbuf_addf(&buf, "%s\n", oid_to_hex(oid));
274a5c06 1021 }
102de880 1022 write_file_buf(git_path_merge_head(the_repository), buf.buf, buf.len);
418c9b17 1023
66f4b98a 1024 strbuf_reset(&buf);
a54841e9 1025 if (fast_forward == FF_NO)
a22ae753 1026 strbuf_addstr(&buf, "no-ff");
102de880 1027 write_file_buf(git_path_merge_mode(the_repository), buf.buf, buf.len);
814c4b37 1028 strbuf_release(&buf);
66f4b98a
JS
1029}
1030
8e6a6bb3
MG
1031static void write_merge_state(struct commit_list *remoteheads)
1032{
1033 write_merge_heads(remoteheads);
1034 strbuf_addch(&merge_msg, '\n');
102de880
SB
1035 write_file_buf(git_path_merge_msg(the_repository), merge_msg.buf,
1036 merge_msg.len);
8e6a6bb3
MG
1037}
1038
f8246281
JH
1039static int default_edit_option(void)
1040{
1041 static const char name[] = "GIT_MERGE_AUTOEDIT";
1042 const char *e = getenv(name);
1043 struct stat st_stdin, st_stdout;
1044
1045 if (have_message)
1046 /* an explicit -m msg without --[no-]edit */
1047 return 0;
1048
1049 if (e) {
89576613 1050 int v = git_parse_maybe_bool(e);
f8246281 1051 if (v < 0)
bef4830e 1052 die(_("Bad value '%s' in environment '%s'"), e, name);
f8246281
JH
1053 return v;
1054 }
1055
1056 /* Use editor if stdin and stdout are the same and is a tty */
1057 return (!fstat(0, &st_stdin) &&
1058 !fstat(1, &st_stdout) &&
d46f476c 1059 isatty(0) && isatty(1) &&
f8246281
JH
1060 st_stdin.st_dev == st_stdout.st_dev &&
1061 st_stdin.st_ino == st_stdout.st_ino &&
1062 st_stdin.st_mode == st_stdout.st_mode);
1063}
1064
34349dbf
JH
1065static struct commit_list *reduce_parents(struct commit *head_commit,
1066 int *head_subsumed,
1067 struct commit_list *remoteheads)
b5d887f9 1068{
e510ab89 1069 struct commit_list *parents, **remotes;
b5d887f9 1070
0b10b8a3
JH
1071 /*
1072 * Is the current HEAD reachable from another commit being
1073 * merged? If so we do not want to record it as a parent of
1074 * the resulting merge, unless --no-ff is given. We will flip
1075 * this variable to 0 when we find HEAD among the independent
1076 * tips being merged.
1077 */
1078 *head_subsumed = 1;
e78cbf8c 1079
0b10b8a3 1080 /* Find what parents to record by checking independent ones. */
e78cbf8c 1081 parents = reduce_heads(remoteheads);
4da72644 1082 free_commit_list(remoteheads);
e78cbf8c 1083
e510ab89
RS
1084 remoteheads = NULL;
1085 remotes = &remoteheads;
1086 while (parents) {
1087 struct commit *commit = pop_commit(&parents);
e78cbf8c
JH
1088 if (commit == head_commit)
1089 *head_subsumed = 0;
1090 else
1091 remotes = &commit_list_insert(commit, remotes)->next;
1092 }
b5d887f9
JH
1093 return remoteheads;
1094}
f8246281 1095
52fecab2
JH
1096static void prepare_merge_message(struct strbuf *merge_names, struct strbuf *merge_msg)
1097{
1098 struct fmt_merge_msg_opts opts;
1099
1100 memset(&opts, 0, sizeof(opts));
1101 opts.add_title = !have_message;
1102 opts.shortlog_len = shortlog_len;
1103 opts.credit_people = (0 < option_edit);
1104
1105 fmt_merge_msg(merge_names, merge_msg, &opts);
1106 if (merge_msg->len)
1107 strbuf_setlen(merge_msg, merge_msg->len - 1);
1108}
1109
74e8bc59
JH
1110static void handle_fetch_head(struct commit_list **remotes, struct strbuf *merge_names)
1111{
1112 const char *filename;
1113 int fd, pos, npos;
1114 struct strbuf fetch_head_file = STRBUF_INIT;
ab47df2d 1115 const unsigned hexsz = the_hash_algo->hexsz;
74e8bc59
JH
1116
1117 if (!merge_names)
1118 merge_names = &fetch_head_file;
1119
102de880 1120 filename = git_path_fetch_head(the_repository);
74e8bc59
JH
1121 fd = open(filename, O_RDONLY);
1122 if (fd < 0)
1123 die_errno(_("could not open '%s' for reading"), filename);
1124
1125 if (strbuf_read(merge_names, fd, 0) < 0)
1126 die_errno(_("could not read '%s'"), filename);
1127 if (close(fd) < 0)
1128 die_errno(_("could not close '%s'"), filename);
1129
1130 for (pos = 0; pos < merge_names->len; pos = npos) {
52684310 1131 struct object_id oid;
74e8bc59
JH
1132 char *ptr;
1133 struct commit *commit;
1134
1135 ptr = strchr(merge_names->buf + pos, '\n');
1136 if (ptr)
1137 npos = ptr - merge_names->buf + 1;
1138 else
1139 npos = merge_names->len;
1140
ab47df2d 1141 if (npos - pos < hexsz + 2 ||
52684310 1142 get_oid_hex(merge_names->buf + pos, &oid))
74e8bc59 1143 commit = NULL; /* bad */
ab47df2d 1144 else if (memcmp(merge_names->buf + pos + hexsz, "\t\t", 2))
74e8bc59
JH
1145 continue; /* not-for-merge */
1146 else {
ab47df2d 1147 char saved = merge_names->buf[pos + hexsz];
1148 merge_names->buf[pos + hexsz] = '\0';
74e8bc59 1149 commit = get_merge_parent(merge_names->buf + pos);
ab47df2d 1150 merge_names->buf[pos + hexsz] = saved;
74e8bc59
JH
1151 }
1152 if (!commit) {
1153 if (ptr)
1154 *ptr = '\0';
bef4830e 1155 die(_("not something we can merge in %s: %s"),
74e8bc59
JH
1156 filename, merge_names->buf + pos);
1157 }
1158 remotes = &commit_list_insert(commit, remotes)->next;
1159 }
1160
1161 if (merge_names == &fetch_head_file)
1162 strbuf_release(&fetch_head_file);
1163}
1164
34349dbf
JH
1165static struct commit_list *collect_parents(struct commit *head_commit,
1166 int *head_subsumed,
1cf32f4d
JH
1167 int argc, const char **argv,
1168 struct strbuf *merge_msg)
34349dbf
JH
1169{
1170 int i;
1171 struct commit_list *remoteheads = NULL;
1172 struct commit_list **remotes = &remoteheads;
77038015
JH
1173 struct strbuf merge_names = STRBUF_INIT, *autogen = NULL;
1174
1175 if (merge_msg && (!have_message || shortlog_len))
1176 autogen = &merge_names;
34349dbf
JH
1177
1178 if (head_commit)
1179 remotes = &commit_list_insert(head_commit, remotes)->next;
34349dbf 1180
74e8bc59
JH
1181 if (argc == 1 && !strcmp(argv[0], "FETCH_HEAD")) {
1182 handle_fetch_head(remotes, autogen);
1183 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1184 } else {
1185 for (i = 0; i < argc; i++) {
1186 struct commit *commit = get_merge_parent(argv[i]);
1187 if (!commit)
1188 help_unknown_ref(argv[i], "merge",
bef4830e 1189 _("not something we can merge"));
74e8bc59
JH
1190 remotes = &commit_list_insert(commit, remotes)->next;
1191 }
1192 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1193 if (autogen) {
1194 struct commit_list *p;
1195 for (p = remoteheads; p; p = p->next)
1196 merge_name(merge_remote_util(p->item)->name, autogen);
1197 }
1198 }
1cf32f4d 1199
77038015 1200 if (autogen) {
77038015
JH
1201 prepare_merge_message(autogen, merge_msg);
1202 strbuf_release(autogen);
1cf32f4d
JH
1203 }
1204
1205 return remoteheads;
34349dbf
JH
1206}
1207
adcc94a0
JH
1208static int merging_a_throwaway_tag(struct commit *commit)
1209{
1210 char *tag_ref;
1211 struct object_id oid;
1212 int is_throwaway_tag = 0;
1213
1214 /* Are we merging a tag? */
1215 if (!merge_remote_util(commit) ||
1216 !merge_remote_util(commit)->obj ||
1217 merge_remote_util(commit)->obj->type != OBJ_TAG)
1218 return is_throwaway_tag;
1219
1220 /*
1221 * Now we know we are merging a tag object. Are we downstream
1222 * and following the tags from upstream? If so, we must have
1223 * the tag object pointed at by "refs/tags/$T" where $T is the
1224 * tagname recorded in the tag object. We want to allow such
1225 * a "just to catch up" merge to fast-forward.
1226 *
1227 * Otherwise, we are playing an integrator's role, making a
1228 * merge with a throw-away tag from a contributor with
1229 * something like "git pull $contributor $signed_tag".
1230 * We want to forbid such a merge from fast-forwarding
1231 * by default; otherwise we would not keep the signature
1232 * anywhere.
1233 */
1234 tag_ref = xstrfmt("refs/tags/%s",
1235 ((struct tag *)merge_remote_util(commit)->obj)->tag);
1236 if (!read_ref(tag_ref, &oid) &&
4a7e27e9 1237 oideq(&oid, &merge_remote_util(commit)->obj->oid))
adcc94a0
JH
1238 is_throwaway_tag = 0;
1239 else
1240 is_throwaway_tag = 1;
1241 free(tag_ref);
1242 return is_throwaway_tag;
1243}
1244
1c7b76be
MV
1245int cmd_merge(int argc, const char **argv, const char *prefix)
1246{
52684310 1247 struct object_id result_tree, stash, head_oid;
894642f6 1248 struct commit *head_commit;
f285a2d7 1249 struct strbuf buf = STRBUF_INIT;
17377b62 1250 int i, ret = 0, head_subsumed;
1c7b76be
MV
1251 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1252 struct commit_list *common = NULL;
1253 const char *best_strategy = NULL, *wt_strategy = NULL;
b5d887f9 1254 struct commit_list *remoteheads, *p;
96ec7b1e 1255 void *branch_to_free;
367ff694 1256 int orig_argc = argc;
1c7b76be 1257
da53eec6
NTND
1258 if (argc == 2 && !strcmp(argv[1], "-h"))
1259 usage_with_options(builtin_merge_usage, builtin_merge_options);
1c7b76be
MV
1260
1261 /*
1262 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1263 * current branch.
1264 */
0f2dc722 1265 branch = branch_to_free = resolve_refdup("HEAD", 0, &head_oid, NULL);
de3ce210
RS
1266 if (branch)
1267 skip_prefix(branch, "refs/heads/", &branch);
7adf5266
DS
1268
1269 init_diff_ui_defaults();
1270 git_config(git_merge_config, NULL);
1271
52684310 1272 if (!branch || is_null_oid(&head_oid))
894642f6 1273 head_commit = NULL;
baf18fc2 1274 else
bc83266a 1275 head_commit = lookup_commit_or_die(&head_oid, "HEAD");
1c7b76be 1276
0d8fc3ef
JH
1277 if (branch_mergeoptions)
1278 parse_branch_merge_options(branch_mergeoptions);
37782920 1279 argc = parse_options(argc, argv, prefix, builtin_merge_options,
1c7b76be 1280 builtin_merge_usage, 0);
898eacd8
JH
1281 if (shortlog_len < 0)
1282 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
2a22c1b3 1283
99bfc669
JK
1284 if (verbosity < 0 && show_progress == -1)
1285 show_progress = 0;
1286
35d2fffd
JH
1287 if (abort_current_merge) {
1288 int nargc = 2;
1289 const char *nargv[] = {"reset", "--merge", NULL};
a03b5553 1290 struct strbuf stash_oid = STRBUF_INIT;
35d2fffd 1291
042e290d 1292 if (orig_argc != 2)
c7d227df 1293 usage_msg_opt(_("--abort expects no arguments"),
042e290d
CP
1294 builtin_merge_usage, builtin_merge_options);
1295
102de880 1296 if (!file_exists(git_path_merge_head(the_repository)))
bacec478 1297 die(_("There is no merge to abort (MERGE_HEAD missing)."));
35d2fffd 1298
a03b5553
DL
1299 if (read_oneliner(&stash_oid, git_path_merge_autostash(the_repository),
1300 READ_ONELINER_SKIP_IF_EMPTY))
1301 unlink(git_path_merge_autostash(the_repository));
1302
35d2fffd 1303 /* Invoke 'git reset --merge' */
d5a35c11 1304 ret = cmd_reset(nargc, nargv, prefix);
a03b5553
DL
1305
1306 if (stash_oid.len)
1307 apply_autostash_oid(stash_oid.buf);
1308
1309 strbuf_release(&stash_oid);
d5a35c11 1310 goto done;
35d2fffd
JH
1311 }
1312
f3f8311e
NTND
1313 if (quit_current_merge) {
1314 if (orig_argc != 2)
1315 usage_msg_opt(_("--quit expects no arguments"),
1316 builtin_merge_usage,
1317 builtin_merge_options);
1318
1319 remove_merge_branch_state(the_repository);
1320 goto done;
1321 }
1322
367ff694
CP
1323 if (continue_current_merge) {
1324 int nargc = 1;
1325 const char *nargv[] = {"commit", NULL};
1326
1327 if (orig_argc != 2)
c7d227df 1328 usage_msg_opt(_("--continue expects no arguments"),
367ff694
CP
1329 builtin_merge_usage, builtin_merge_options);
1330
102de880 1331 if (!file_exists(git_path_merge_head(the_repository)))
367ff694
CP
1332 die(_("There is no merge in progress (MERGE_HEAD missing)."));
1333
1334 /* Invoke 'git commit' */
1335 ret = cmd_commit(nargc, nargv, prefix);
1336 goto done;
1337 }
1338
2a22c1b3
JH
1339 if (read_cache_unmerged())
1340 die_resolve_conflict("merge");
1341
102de880 1342 if (file_exists(git_path_merge_head(the_repository))) {
2a22c1b3
JH
1343 /*
1344 * There is no unmerged entry, don't advise 'git
1345 * add/rm <file>', just 'git commit'.
1346 */
1347 if (advice_resolve_conflict)
bacec478 1348 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
ad5fe377 1349 "Please, commit your changes before you merge."));
2a22c1b3 1350 else
bacec478 1351 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
2a22c1b3 1352 }
102de880 1353 if (file_exists(git_path_cherry_pick_head(the_repository))) {
d7e5c0cb 1354 if (advice_resolve_conflict)
f68f1801 1355 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
ad5fe377 1356 "Please, commit your changes before you merge."));
d7e5c0cb 1357 else
f68f1801 1358 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
2a22c1b3
JH
1359 }
1360 resolve_undo_clear();
1361
d540b70c
DL
1362 if (option_edit < 0)
1363 option_edit = default_edit_option();
1364
1365 cleanup_mode = get_cleanup_mode(cleanup_arg, 0 < option_edit);
1366
7f87aff2
TA
1367 if (verbosity < 0)
1368 show_diffstat = 0;
1c7b76be
MV
1369
1370 if (squash) {
a54841e9 1371 if (fast_forward == FF_NO)
bacec478 1372 die(_("You cannot combine --squash with --no-ff."));
1d14d0c9
VV
1373 if (option_commit > 0)
1374 die(_("You cannot combine --squash with --commit."));
1375 /*
1376 * squash can now silently disable option_commit - this is not
1377 * a problem as it is only overriding the default, not a user
1378 * supplied option.
1379 */
1c7b76be
MV
1380 option_commit = 0;
1381 }
1382
1d14d0c9
VV
1383 if (option_commit < 0)
1384 option_commit = 1;
1385
00c7e7e7
JH
1386 if (!argc) {
1387 if (default_to_upstream)
1388 argc = setup_with_upstream(&argv);
1389 else
1390 die(_("No commit specified and merge.defaultToUpstream not set."));
1391 } else if (argc == 1 && !strcmp(argv[0], "-")) {
1392 argv[0] = "@{-1}";
4e8115ff 1393 }
00c7e7e7 1394
1c7b76be
MV
1395 if (!argc)
1396 usage_with_options(builtin_merge_usage,
1397 builtin_merge_options);
1398
1faac1ce 1399 if (!head_commit) {
1c7b76be
MV
1400 /*
1401 * If the merged head is a valid one there is no reason
1402 * to forbid "git merge" into a branch yet to be born.
1403 * We do the same for "git pull".
1404 */
52684310 1405 struct object_id *remote_head_oid;
4be636f4 1406 if (squash)
bacec478 1407 die(_("Squash commit into empty head not supported yet"));
a54841e9 1408 if (fast_forward == FF_NO)
bacec478
ÆAB
1409 die(_("Non-fast-forward commit does not make sense into "
1410 "an empty head"));
1cf32f4d
JH
1411 remoteheads = collect_parents(head_commit, &head_subsumed,
1412 argc, argv, NULL);
b84e65d4 1413 if (!remoteheads)
bacec478 1414 die(_("%s - not something we can merge"), argv[0]);
eaa4e59c
JH
1415 if (remoteheads->next)
1416 die(_("Can merge only exactly one commit into empty head"));
7488ba3e
JK
1417
1418 if (verify_signatures)
54887b46
HJI
1419 verify_merge_signature(remoteheads->item, verbosity,
1420 check_trust_level);
7488ba3e 1421
52684310 1422 remote_head_oid = &remoteheads->item->object.oid;
cb91022c 1423 read_empty(remote_head_oid, 0);
ae077771 1424 update_ref("initial pull", "HEAD", remote_head_oid, NULL, 0,
1425 UPDATE_REFS_DIE_ON_ERR);
d5a35c11 1426 goto done;
1faac1ce 1427 }
1c7b76be 1428
1faac1ce 1429 /*
b4391657
JH
1430 * All the rest are the commits being merged; prepare
1431 * the standard merge summary message to be appended
1432 * to the given message.
1faac1ce 1433 */
b4391657
JH
1434 remoteheads = collect_parents(head_commit, &head_subsumed,
1435 argc, argv, &merge_msg);
1c7b76be 1436
894642f6 1437 if (!head_commit || !argc)
1c7b76be
MV
1438 usage_with_options(builtin_merge_usage,
1439 builtin_merge_options);
1440
efed0022
SG
1441 if (verify_signatures) {
1442 for (p = remoteheads; p; p = p->next) {
54887b46
HJI
1443 verify_merge_signature(p->item, verbosity,
1444 check_trust_level);
efed0022
SG
1445 }
1446 }
1447
1c7b76be 1448 strbuf_addstr(&buf, "merge");
b5d887f9
JH
1449 for (p = remoteheads; p; p = p->next)
1450 strbuf_addf(&buf, " %s", merge_remote_util(p->item)->name);
1c7b76be
MV
1451 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1452 strbuf_reset(&buf);
1453
b5d887f9
JH
1454 for (p = remoteheads; p; p = p->next) {
1455 struct commit *commit = p->item;
ae8e4c9c 1456 strbuf_addf(&buf, "GITHEAD_%s",
c368dde9 1457 oid_to_hex(&commit->object.oid));
b5d887f9 1458 setenv(buf.buf, merge_remote_util(commit)->name, 1);
1c7b76be 1459 strbuf_reset(&buf);
adcc94a0 1460 if (fast_forward != FF_ONLY && merging_a_throwaway_tag(commit))
a54841e9 1461 fast_forward = FF_NO;
1c7b76be
MV
1462 }
1463
1464 if (!use_strategies) {
e78cbf8c
JH
1465 if (!remoteheads)
1466 ; /* already up-to-date */
1467 else if (!remoteheads->next)
1c7b76be
MV
1468 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1469 else
1470 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1471 }
1472
1473 for (i = 0; i < use_strategies_nr; i++) {
1474 if (use_strategies[i]->attr & NO_FAST_FORWARD)
a54841e9 1475 fast_forward = FF_NO;
1c7b76be
MV
1476 if (use_strategies[i]->attr & NO_TRIVIAL)
1477 allow_trivial = 0;
1478 }
1479
e78cbf8c
JH
1480 if (!remoteheads)
1481 ; /* already up-to-date */
1482 else if (!remoteheads->next)
2ce406cc 1483 common = get_merge_bases(head_commit, remoteheads->item);
1c7b76be
MV
1484 else {
1485 struct commit_list *list = remoteheads;
894642f6 1486 commit_list_insert(head_commit, &list);
1c7b76be
MV
1487 common = get_octopus_merge_bases(list);
1488 free(list);
1489 }
1490
ae077771 1491 update_ref("updating ORIG_HEAD", "ORIG_HEAD",
1492 &head_commit->object.oid, NULL, 0, UPDATE_REFS_DIE_ON_ERR);
1c7b76be 1493
e379fdf3
JH
1494 if (remoteheads && !common) {
1495 /* No common ancestors found. */
1496 if (!allow_unrelated_histories)
1497 die(_("refusing to merge unrelated histories"));
1498 /* otherwise, we need a real merge. */
1499 } else if (!remoteheads ||
e78cbf8c
JH
1500 (!remoteheads->next && !common->next &&
1501 common->item == remoteheads->item)) {
1c7b76be
MV
1502 /*
1503 * If head can reach all the merge then we are up to date.
1504 * but first the most common case of merging one remote.
1505 */
7560f547 1506 finish_up_to_date(_("Already up to date."));
d5a35c11 1507 goto done;
a54841e9 1508 } else if (fast_forward != FF_NO && !remoteheads->next &&
1c7b76be 1509 !common->next &&
4a7e27e9 1510 oideq(&common->item->object.oid, &head_commit->object.oid)) {
1c7b76be 1511 /* Again the most common case of merging one remote. */
f285a2d7 1512 struct strbuf msg = STRBUF_INIT;
ae8e4c9c 1513 struct commit *commit;
1c7b76be 1514
d59f765a 1515 if (verbosity >= 0) {
ef2ed501 1516 printf(_("Updating %s..%s\n"),
aab9583f 1517 find_unique_abbrev(&head_commit->object.oid,
ef2ed501 1518 DEFAULT_ABBREV),
aab9583f 1519 find_unique_abbrev(&remoteheads->item->object.oid,
ef2ed501 1520 DEFAULT_ABBREV));
d59f765a 1521 }
a75d7b54 1522 strbuf_addstr(&msg, "Fast-forward");
1c7b76be
MV
1523 if (have_message)
1524 strbuf_addstr(&msg,
1525 " (no commit created; -m option ignored)");
ae8e4c9c 1526 commit = remoteheads->item;
b7f7c079 1527 if (!commit) {
d5a35c11
NTND
1528 ret = 1;
1529 goto done;
1530 }
1c7b76be 1531
a03b5553
DL
1532 if (autostash)
1533 create_autostash(the_repository,
1534 git_path_merge_autostash(the_repository),
1535 "merge");
7e196c3a
NTND
1536 if (checkout_fast_forward(the_repository,
1537 &head_commit->object.oid,
f06e90da 1538 &commit->object.oid,
db699a8a 1539 overwrite_ignore)) {
d5a35c11
NTND
1540 ret = 1;
1541 goto done;
1542 }
1c7b76be 1543
52684310 1544 finish(head_commit, remoteheads, &commit->object.oid, msg.buf);
b6433555 1545 remove_merge_branch_state(the_repository);
d5a35c11 1546 goto done;
1c7b76be
MV
1547 } else if (!remoteheads->next && common->next)
1548 ;
1549 /*
a75d7b54 1550 * We are not doing octopus and not fast-forward. Need
1c7b76be
MV
1551 * a real merge.
1552 */
1553 else if (!remoteheads->next && !common->next && option_commit) {
1554 /*
a75d7b54 1555 * We are not doing octopus, not fast-forward, and have
1c7b76be
MV
1556 * only one common.
1557 */
1558 refresh_cache(REFRESH_QUIET);
a54841e9 1559 if (allow_trivial && fast_forward != FF_ONLY) {
1c7b76be 1560 /* See if it is really trivial. */
f9bc573f 1561 git_committer_info(IDENT_STRICT);
bacec478 1562 printf(_("Trying really trivial in-index merge...\n"));
52684310 1563 if (!read_tree_trivial(&common->item->object.oid,
1564 &head_commit->object.oid,
1565 &remoteheads->item->object.oid)) {
4c57bd27 1566 ret = merge_trivial(head_commit, remoteheads);
d5a35c11
NTND
1567 goto done;
1568 }
bacec478 1569 printf(_("Nope.\n"));
1c7b76be
MV
1570 }
1571 } else {
1572 /*
1573 * An octopus. If we can reach all the remote we are up
1574 * to date.
1575 */
1576 int up_to_date = 1;
1577 struct commit_list *j;
1578
1579 for (j = remoteheads; j; j = j->next) {
1580 struct commit_list *common_one;
1581
1582 /*
1583 * Here we *have* to calculate the individual
1584 * merge_bases again, otherwise "git merge HEAD^
1585 * HEAD^^" would be missed.
1586 */
2ce406cc 1587 common_one = get_merge_bases(head_commit, j->item);
9001dc2a 1588 if (!oideq(&common_one->item->object.oid, &j->item->object.oid)) {
1c7b76be
MV
1589 up_to_date = 0;
1590 break;
1591 }
1592 }
1593 if (up_to_date) {
7560f547 1594 finish_up_to_date(_("Already up to date. Yeeah!"));
d5a35c11 1595 goto done;
1c7b76be
MV
1596 }
1597 }
1598
a54841e9 1599 if (fast_forward == FF_ONLY)
bacec478 1600 die(_("Not possible to fast-forward, aborting."));
13474835 1601
a03b5553
DL
1602 if (autostash)
1603 create_autostash(the_repository,
1604 git_path_merge_autostash(the_repository),
1605 "merge");
1606
1c7b76be 1607 /* We are going to make a new commit. */
f9bc573f 1608 git_committer_info(IDENT_STRICT);
1c7b76be
MV
1609
1610 /*
1611 * At this point, we need a real merge. No matter what strategy
1612 * we use, it would operate on the index, possibly affecting the
1613 * working tree, and when resolved cleanly, have the desired
1614 * tree in the index -- this means that the index must be in
1615 * sync with the head commit. The strategies are responsible
1616 * to ensure this.
1617 */
b4fd9406
NTND
1618 if (use_strategies_nr == 1 ||
1619 /*
1620 * Stash away the local changes so that we can try more than one.
1621 */
52684310 1622 save_state(&stash))
1623 oidclr(&stash);
1c7b76be 1624
f00abe6a
ECA
1625 for (i = 0; !merge_was_ok && i < use_strategies_nr; i++) {
1626 int ret, cnt;
1c7b76be 1627 if (i) {
bacec478 1628 printf(_("Rewinding the tree to pristine...\n"));
52684310 1629 restore_state(&head_commit->object.oid, &stash);
1c7b76be
MV
1630 }
1631 if (use_strategies_nr != 1)
bacec478 1632 printf(_("Trying merge strategy %s...\n"),
1c7b76be
MV
1633 use_strategies[i]->name);
1634 /*
1635 * Remember which strategy left the state in the working
1636 * tree.
1637 */
1638 wt_strategy = use_strategies[i]->name;
1639
1640 ret = try_merge_strategy(use_strategies[i]->name,
4c57bd27 1641 common, remoteheads,
b4391657 1642 head_commit);
f00abe6a
ECA
1643 /*
1644 * The backend exits with 1 when conflicts are
1645 * left to be resolved, with 2 when it does not
1646 * handle the given merge at all.
1647 */
1648 if (ret < 2) {
1649 if (!ret) {
1650 if (option_commit) {
1651 /* Automerge succeeded. */
1652 automerge_was_ok = 1;
1653 break;
1c7b76be 1654 }
f00abe6a
ECA
1655 merge_was_ok = 1;
1656 }
1657 cnt = evaluate_result();
1658 if (best_cnt <= 0 || cnt <= best_cnt) {
1659 best_strategy = use_strategies[i]->name;
1660 best_cnt = cnt;
1c7b76be 1661 }
1c7b76be 1662 }
1c7b76be
MV
1663 }
1664
1665 /*
1666 * If we have a resulting tree, that means the strategy module
1667 * auto resolved the merge cleanly.
1668 */
d5a35c11 1669 if (automerge_was_ok) {
e78cbf8c
JH
1670 ret = finish_automerge(head_commit, head_subsumed,
1671 common, remoteheads,
52684310 1672 &result_tree, wt_strategy);
d5a35c11
NTND
1673 goto done;
1674 }
1c7b76be
MV
1675
1676 /*
1677 * Pick the result from the best strategy and have the user fix
1678 * it up.
1679 */
1680 if (!best_strategy) {
52684310 1681 restore_state(&head_commit->object.oid, &stash);
1c7b76be
MV
1682 if (use_strategies_nr > 1)
1683 fprintf(stderr,
bacec478 1684 _("No merge strategy handled the merge.\n"));
1c7b76be 1685 else
bacec478 1686 fprintf(stderr, _("Merge with strategy %s failed.\n"),
1c7b76be 1687 use_strategies[0]->name);
d5a35c11
NTND
1688 ret = 2;
1689 goto done;
1c7b76be
MV
1690 } else if (best_strategy == wt_strategy)
1691 ; /* We already have its result in the working tree. */
1692 else {
bacec478 1693 printf(_("Rewinding the tree to pristine...\n"));
52684310 1694 restore_state(&head_commit->object.oid, &stash);
bacec478 1695 printf(_("Using the %s to prepare resolving by hand.\n"),
1c7b76be 1696 best_strategy);
4c57bd27 1697 try_merge_strategy(best_strategy, common, remoteheads,
b4391657 1698 head_commit);
1c7b76be
MV
1699 }
1700
1701 if (squash)
4c57bd27 1702 finish(head_commit, remoteheads, NULL, NULL);
66f4b98a 1703 else
4c57bd27 1704 write_merge_state(remoteheads);
1c7b76be 1705
d5a35c11 1706 if (merge_was_ok)
bacec478
ÆAB
1707 fprintf(stderr, _("Automatic merge went well; "
1708 "stopped before committing as requested\n"));
d5a35c11 1709 else
08e3ce5a 1710 ret = suggest_conflicts();
d5a35c11
NTND
1711
1712done:
96ec7b1e 1713 free(branch_to_free);
d5a35c11 1714 return ret;
1c7b76be 1715}