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