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