blob: a1c85344b2b54f957ea69ace864ea99b7d295405 [file] [log] [blame]
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001/*
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"
12#include "run-command.h"
13#include "diff.h"
14#include "refs.h"
15#include "commit.h"
16#include "diffcore.h"
17#include "revision.h"
18#include "unpack-trees.h"
19#include "cache-tree.h"
20#include "dir.h"
21#include "utf8.h"
22#include "log-tree.h"
23#include "color.h"
Junio C Hamanofcab40a2008-07-15 19:09:46 -070024#include "rerere.h"
Miklos Vajna87091b42008-07-30 01:16:59 +020025#include "help.h"
Miklos Vajna18668f52008-08-28 15:43:00 +020026#include "merge-recursive.h"
Junio C Hamanocfc57892009-12-25 00:30:51 -080027#include "resolve-undo.h"
Junio C Hamano93e535a2011-03-23 23:48:24 -070028#include "remote.h"
Junio C Hamano898eacd2011-10-06 23:12:09 -070029#include "fmt-merge-msg.h"
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020030
31#define DEFAULT_TWOHEAD (1<<0)
32#define DEFAULT_OCTOPUS (1<<1)
33#define NO_FAST_FORWARD (1<<2)
34#define NO_TRIVIAL (1<<3)
35
36struct strategy {
37 const char *name;
38 unsigned attr;
39};
40
41static const char * const builtin_merge_usage[] = {
Junio C Hamano93e535a2011-03-23 23:48:24 -070042 "git merge [options] [<commit>...]",
Jared Hancec395c252011-02-10 18:52:41 -050043 "git merge [options] <msg> HEAD <commit>",
44 "git merge --abort",
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020045 NULL
46};
47
Junio C Hamano898eacd2011-10-06 23:12:09 -070048static int show_diffstat = 1, shortlog_len = -1, squash;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020049static int option_commit = 1, allow_fast_forward = 1;
Jay Soffian66f4b982011-10-08 14:39:52 -040050static int fast_forward_only, option_edit;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020051static int allow_trivial = 1, have_message;
52static struct strbuf merge_msg;
53static struct commit_list *remoteheads;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020054static struct strategy **use_strategies;
55static size_t use_strategies_nr, use_strategies_alloc;
Avery Pennarun8cc5b292009-11-25 21:23:55 -050056static const char **xopts;
57static size_t xopts_nr, xopts_alloc;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020058static const char *branch;
Junio C Hamano0d8fc3e2011-05-04 17:42:51 -070059static char *branch_mergeoptions;
Jonathan Nieder7610fa52010-08-05 06:32:41 -050060static int option_renormalize;
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010061static int verbosity;
Junio C Hamanocb6020b2009-12-04 00:20:48 -080062static int allow_rerere_auto;
Johan Herland35d2fff2010-11-09 22:49:59 +010063static int abort_current_merge;
Jeff King99bfc662011-02-20 04:53:21 -050064static int show_progress = -1;
Junio C Hamano93e535a2011-03-23 23:48:24 -070065static int default_to_upstream;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020066
67static struct strategy all_strategy[] = {
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020068 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
69 { "octopus", DEFAULT_OCTOPUS },
70 { "resolve", 0 },
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020071 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
72 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
73};
74
75static const char *pull_twohead, *pull_octopus;
76
77static int option_parse_message(const struct option *opt,
78 const char *arg, int unset)
79{
80 struct strbuf *buf = opt->value;
81
82 if (unset)
83 strbuf_setlen(buf, 0);
Michele Ballabio74f5b7f2008-07-20 14:34:47 +020084 else if (arg) {
Junio C Hamanoce9d8232009-12-02 10:00:58 -080085 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020086 have_message = 1;
Michele Ballabio74f5b7f2008-07-20 14:34:47 +020087 } else
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +000088 return error(_("switch `m' requires a value"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020089 return 0;
90}
91
92static struct strategy *get_strategy(const char *name)
93{
94 int i;
Miklos Vajna87091b42008-07-30 01:16:59 +020095 struct strategy *ret;
96 static struct cmdnames main_cmds, other_cmds;
Alex Riesene3211802008-08-28 19:15:33 +020097 static int loaded;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +020098
99 if (!name)
100 return NULL;
101
102 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
103 if (!strcmp(name, all_strategy[i].name))
104 return &all_strategy[i];
Miklos Vajna1719b5e2008-07-21 18:10:47 +0200105
Alex Riesene3211802008-08-28 19:15:33 +0200106 if (!loaded) {
Miklos Vajna87091b42008-07-30 01:16:59 +0200107 struct cmdnames not_strategies;
Alex Riesene3211802008-08-28 19:15:33 +0200108 loaded = 1;
Miklos Vajna87091b42008-07-30 01:16:59 +0200109
Miklos Vajna87091b42008-07-30 01:16:59 +0200110 memset(&not_strategies, 0, sizeof(struct cmdnames));
Alex Riesene3211802008-08-28 19:15:33 +0200111 load_command_list("git-merge-", &main_cmds, &other_cmds);
Miklos Vajna87091b42008-07-30 01:16:59 +0200112 for (i = 0; i < main_cmds.cnt; i++) {
113 int j, found = 0;
114 struct cmdname *ent = main_cmds.names[i];
115 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
116 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
117 && !all_strategy[j].name[ent->len])
118 found = 1;
119 if (!found)
120 add_cmdname(&not_strategies, ent->name, ent->len);
Miklos Vajna87091b42008-07-30 01:16:59 +0200121 }
Avery Pennaruned874652009-11-25 21:23:54 -0500122 exclude_cmds(&main_cmds, &not_strategies);
Miklos Vajna87091b42008-07-30 01:16:59 +0200123 }
124 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000125 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
126 fprintf(stderr, _("Available strategies are:"));
Junio C Hamano131f9a12008-08-20 22:07:55 -0700127 for (i = 0; i < main_cmds.cnt; i++)
128 fprintf(stderr, " %s", main_cmds.names[i]->name);
129 fprintf(stderr, ".\n");
130 if (other_cmds.cnt) {
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000131 fprintf(stderr, _("Available custom strategies are:"));
Junio C Hamano131f9a12008-08-20 22:07:55 -0700132 for (i = 0; i < other_cmds.cnt; i++)
133 fprintf(stderr, " %s", other_cmds.names[i]->name);
134 fprintf(stderr, ".\n");
135 }
Miklos Vajna87091b42008-07-30 01:16:59 +0200136 exit(1);
137 }
138
Brandon Casey19d4b412008-10-06 18:39:10 -0500139 ret = xcalloc(1, sizeof(struct strategy));
Miklos Vajna87091b42008-07-30 01:16:59 +0200140 ret->name = xstrdup(name);
Jonathan Nieder52b48ef2010-08-15 20:11:06 -0500141 ret->attr = NO_TRIVIAL;
Miklos Vajna87091b42008-07-30 01:16:59 +0200142 return ret;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200143}
144
145static void append_strategy(struct strategy *s)
146{
147 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
148 use_strategies[use_strategies_nr++] = s;
149}
150
151static int option_parse_strategy(const struct option *opt,
152 const char *name, int unset)
153{
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200154 if (unset)
155 return 0;
156
Miklos Vajna1719b5e2008-07-21 18:10:47 +0200157 append_strategy(get_strategy(name));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200158 return 0;
159}
160
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500161static int option_parse_x(const struct option *opt,
162 const char *arg, int unset)
163{
164 if (unset)
165 return 0;
166
167 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
168 xopts[xopts_nr++] = xstrdup(arg);
169 return 0;
170}
171
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200172static int option_parse_n(const struct option *opt,
173 const char *arg, int unset)
174{
175 show_diffstat = unset;
176 return 0;
177}
178
179static struct option builtin_merge_options[] = {
180 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
181 "do not show a diffstat at the end of the merge",
182 PARSE_OPT_NOARG, option_parse_n },
183 OPT_BOOLEAN(0, "stat", &show_diffstat,
184 "show a diffstat at the end of the merge"),
185 OPT_BOOLEAN(0, "summary", &show_diffstat, "(synonym to --stat)"),
Ramkumar Ramachandra96e94202010-09-08 23:29:54 +0530186 { OPTION_INTEGER, 0, "log", &shortlog_len, "n",
187 "add (at most <n>) entries from shortlog to merge commit message",
188 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200189 OPT_BOOLEAN(0, "squash", &squash,
190 "create a single commit instead of doing a merge"),
191 OPT_BOOLEAN(0, "commit", &option_commit,
192 "perform a commit if the merge succeeds (default)"),
Jay Soffian66f4b982011-10-08 14:39:52 -0400193 OPT_BOOLEAN('e', "edit", &option_edit,
194 "edit message before committing"),
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200195 OPT_BOOLEAN(0, "ff", &allow_fast_forward,
Felipe Contrerasa75d7b52009-10-24 11:31:32 +0300196 "allow fast-forward (default)"),
Björn Gustavsson13474832009-10-29 23:08:31 +0100197 OPT_BOOLEAN(0, "ff-only", &fast_forward_only,
Junio C Hamano4d8c3252009-11-15 16:41:02 -0800198 "abort if fast-forward is not possible"),
Junio C Hamanocb6020b2009-12-04 00:20:48 -0800199 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200200 OPT_CALLBACK('s', "strategy", &use_strategies, "strategy",
201 "merge strategy to use", option_parse_strategy),
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500202 OPT_CALLBACK('X', "strategy-option", &xopts, "option=value",
203 "option for selected merge strategy", option_parse_x),
Michael J Gruber23c6a802011-02-15 14:09:12 +0100204 OPT_CALLBACK('m', "message", &merge_msg, "message",
Michael J Gruber3f406172011-02-15 14:09:07 +0100205 "merge commit message (for a non-fast-forward merge)",
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200206 option_parse_message),
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +0100207 OPT__VERBOSITY(&verbosity),
Johan Herland35d2fff2010-11-09 22:49:59 +0100208 OPT_BOOLEAN(0, "abort", &abort_current_merge,
209 "abort the current in-progress merge"),
Jeff King99bfc662011-02-20 04:53:21 -0500210 OPT_SET_INT(0, "progress", &show_progress, "force progress reporting", 1),
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200211 OPT_END()
212};
213
214/* Cleans up metadata that is uninteresting after a succeeded merge. */
215static void drop_save(void)
216{
217 unlink(git_path("MERGE_HEAD"));
218 unlink(git_path("MERGE_MSG"));
Miklos Vajnacf10f9f2008-10-03 14:04:47 +0200219 unlink(git_path("MERGE_MODE"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200220}
221
Nguyễn Thái Ngọc Duyb4fd9402011-08-19 21:50:05 +0700222static int save_state(unsigned char *stash)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200223{
224 int len;
225 struct child_process cp;
226 struct strbuf buffer = STRBUF_INIT;
227 const char *argv[] = {"stash", "create", NULL};
228
229 memset(&cp, 0, sizeof(cp));
230 cp.argv = argv;
231 cp.out = -1;
232 cp.git_cmd = 1;
233
234 if (start_command(&cp))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000235 die(_("could not run stash."));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200236 len = strbuf_read(&buffer, cp.out, 1024);
237 close(cp.out);
238
239 if (finish_command(&cp) || len < 0)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000240 die(_("stash failed"));
Nguyễn Thái Ngọc Duyb4fd9402011-08-19 21:50:05 +0700241 else if (!len) /* no changes */
242 return -1;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200243 strbuf_setlen(&buffer, buffer.len-1);
244 if (get_sha1(buffer.buf, stash))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000245 die(_("not a valid object: %s"), buffer.buf);
Nguyễn Thái Ngọc Duyb4fd9402011-08-19 21:50:05 +0700246 return 0;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200247}
248
Clemens Buchacher172b6422010-11-14 23:07:49 +0100249static void read_empty(unsigned const char *sha1, int verbose)
250{
251 int i = 0;
252 const char *args[7];
253
254 args[i++] = "read-tree";
255 if (verbose)
256 args[i++] = "-v";
257 args[i++] = "-m";
258 args[i++] = "-u";
259 args[i++] = EMPTY_TREE_SHA1_HEX;
260 args[i++] = sha1_to_hex(sha1);
261 args[i] = NULL;
262
263 if (run_command_v_opt(args, RUN_GIT_CMD))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000264 die(_("read-tree failed"));
Clemens Buchacher172b6422010-11-14 23:07:49 +0100265}
266
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200267static void reset_hard(unsigned const char *sha1, int verbose)
268{
269 int i = 0;
270 const char *args[6];
271
272 args[i++] = "read-tree";
273 if (verbose)
274 args[i++] = "-v";
275 args[i++] = "--reset";
276 args[i++] = "-u";
277 args[i++] = sha1_to_hex(sha1);
278 args[i] = NULL;
279
280 if (run_command_v_opt(args, RUN_GIT_CMD))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000281 die(_("read-tree failed"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200282}
283
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000284static void restore_state(const unsigned char *head,
285 const unsigned char *stash)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200286{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500287 struct strbuf sb = STRBUF_INIT;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200288 const char *args[] = { "stash", "apply", NULL, NULL };
289
290 if (is_null_sha1(stash))
291 return;
292
293 reset_hard(head, 1);
294
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200295 args[2] = sha1_to_hex(stash);
296
297 /*
298 * It is OK to ignore error here, for example when there was
299 * nothing to restore.
300 */
301 run_command_v_opt(args, RUN_GIT_CMD);
302
303 strbuf_release(&sb);
304 refresh_cache(REFRESH_QUIET);
305}
306
307/* This is called when no merge was necessary. */
308static void finish_up_to_date(const char *msg)
309{
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +0100310 if (verbosity >= 0)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000311 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200312 drop_save();
313}
314
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000315static void squash_message(struct commit *commit)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200316{
317 struct rev_info rev;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500318 struct strbuf out = STRBUF_INIT;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200319 struct commit_list *j;
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600320 const char *filename;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200321 int fd;
Thomas Rastdd2e7942009-10-19 17:48:08 +0200322 struct pretty_print_context ctx = {0};
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200323
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000324 printf(_("Squash commit -- not updating HEAD\n"));
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600325 filename = git_path("SQUASH_MSG");
326 fd = open(filename, O_WRONLY | O_CREAT, 0666);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200327 if (fd < 0)
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600328 die_errno(_("Could not write to '%s'"), filename);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200329
330 init_revisions(&rev, NULL);
331 rev.ignore_merges = 1;
332 rev.commit_format = CMIT_FMT_MEDIUM;
333
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200334 commit->object.flags |= UNINTERESTING;
335 add_pending_object(&rev, &commit->object, NULL);
336
337 for (j = remoteheads; j; j = j->next)
338 add_pending_object(&rev, &j->item->object, NULL);
339
340 setup_revisions(0, NULL, &rev, NULL);
341 if (prepare_revision_walk(&rev))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000342 die(_("revision walk setup failed"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200343
Thomas Rastdd2e7942009-10-19 17:48:08 +0200344 ctx.abbrev = rev.abbrev;
345 ctx.date_mode = rev.date_mode;
Jeff King6bf13942011-05-26 18:27:49 -0400346 ctx.fmt = rev.commit_format;
Thomas Rastdd2e7942009-10-19 17:48:08 +0200347
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200348 strbuf_addstr(&out, "Squashed commit of the following:\n");
349 while ((commit = get_revision(&rev)) != NULL) {
350 strbuf_addch(&out, '\n');
351 strbuf_addf(&out, "commit %s\n",
352 sha1_to_hex(commit->object.sha1));
Jeff King6bf13942011-05-26 18:27:49 -0400353 pretty_print_commit(&ctx, commit, &out);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200354 }
Alex Riesen47d32af2008-12-05 01:35:48 +0100355 if (write(fd, out.buf, out.len) < 0)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000356 die_errno(_("Writing SQUASH_MSG"));
Alex Riesen47d32af2008-12-05 01:35:48 +0100357 if (close(fd))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000358 die_errno(_("Finishing SQUASH_MSG"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200359 strbuf_release(&out);
360}
361
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000362static void finish(struct commit *head_commit,
363 const unsigned char *new_head, const char *msg)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200364{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500365 struct strbuf reflog_message = STRBUF_INIT;
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000366 const unsigned char *head = head_commit->object.sha1;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200367
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200368 if (!msg)
369 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
370 else {
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +0100371 if (verbosity >= 0)
372 printf("%s\n", msg);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200373 strbuf_addf(&reflog_message, "%s: %s",
374 getenv("GIT_REFLOG_ACTION"), msg);
375 }
376 if (squash) {
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000377 squash_message(head_commit);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200378 } else {
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +0100379 if (verbosity >= 0 && !merge_msg.len)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000380 printf(_("No merge message -- not updating HEAD\n"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200381 else {
382 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
383 update_ref(reflog_message.buf, "HEAD",
384 new_head, head, 0,
385 DIE_ON_ERR);
386 /*
387 * We ignore errors in 'gc --auto', since the
388 * user should see them.
389 */
390 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
391 }
392 }
393 if (new_head && show_diffstat) {
394 struct diff_options opts;
395 diff_setup(&opts);
396 opts.output_format |=
397 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
398 opts.detect_rename = DIFF_DETECT_RENAME;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200399 if (diff_setup_done(&opts) < 0)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000400 die(_("diff_setup_done failed"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200401 diff_tree_sha1(head, new_head, "", &opts);
402 diffcore_std(&opts);
403 diff_flush(&opts);
404 }
405
406 /* Run a post-merge hook */
Stephan Beyerae98a002009-01-16 20:09:59 +0100407 run_hook(NULL, "post-merge", squash ? "1" : "0", NULL);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200408
409 strbuf_release(&reflog_message);
410}
411
412/* Get the name for the merge commit's message. */
413static void merge_name(const char *remote, struct strbuf *msg)
414{
Junio C Hamanoae8e4c92011-11-07 13:26:22 -0800415 struct commit *remote_head;
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +0700416 unsigned char branch_head[20];
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500417 struct strbuf buf = STRBUF_INIT;
Junio C Hamanoc9717ee2009-02-13 23:26:12 -0800418 struct strbuf bname = STRBUF_INIT;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200419 const char *ptr;
Jeff King751c5972009-08-09 06:02:24 -0400420 char *found_ref;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200421 int len, early;
422
Junio C Hamanoa552de72009-03-21 13:17:30 -0700423 strbuf_branchname(&bname, remote);
424 remote = bname.buf;
Junio C Hamanoc9717ee2009-02-13 23:26:12 -0800425
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200426 memset(branch_head, 0, sizeof(branch_head));
Junio C Hamanoae8e4c92011-11-07 13:26:22 -0800427 remote_head = get_merge_parent(remote);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200428 if (!remote_head)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000429 die(_("'%s' does not point to a commit"), remote);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200430
Jeff King751c5972009-08-09 06:02:24 -0400431 if (dwim_ref(remote, strlen(remote), branch_head, &found_ref) > 0) {
432 if (!prefixcmp(found_ref, "refs/heads/")) {
433 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
434 sha1_to_hex(branch_head), remote);
435 goto cleanup;
436 }
Junio C Hamano57b58db2011-11-04 21:31:28 -0700437 if (!prefixcmp(found_ref, "refs/tags/")) {
438 strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
439 sha1_to_hex(branch_head), remote);
440 goto cleanup;
441 }
Jeff King69a8b7c2009-08-09 06:02:51 -0400442 if (!prefixcmp(found_ref, "refs/remotes/")) {
Matthieu Moy13931232010-11-02 16:31:25 +0100443 strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
Jeff King69a8b7c2009-08-09 06:02:51 -0400444 sha1_to_hex(branch_head), remote);
445 goto cleanup;
446 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200447 }
448
449 /* See if remote matches <name>^^^.. or <name>~<number> */
450 for (len = 0, ptr = remote + strlen(remote);
451 remote < ptr && ptr[-1] == '^';
452 ptr--)
453 len++;
454 if (len)
455 early = 1;
456 else {
457 early = 0;
458 ptr = strrchr(remote, '~');
459 if (ptr) {
460 int seen_nonzero = 0;
461
462 len++; /* count ~ */
463 while (*++ptr && isdigit(*ptr)) {
464 seen_nonzero |= (*ptr != '0');
465 len++;
466 }
467 if (*ptr)
468 len = 0; /* not ...~<number> */
469 else if (seen_nonzero)
470 early = 1;
471 else if (len == 1)
472 early = 1; /* "name~" is "name~1"! */
473 }
474 }
475 if (len) {
476 struct strbuf truname = STRBUF_INIT;
477 strbuf_addstr(&truname, "refs/heads/");
478 strbuf_addstr(&truname, remote);
Junio C Hamano9b6bf4d2008-07-30 01:12:19 -0700479 strbuf_setlen(&truname, truname.len - len);
Nguyễn Thái Ngọc Duyc6893322011-11-13 17:22:14 +0700480 if (ref_exists(truname.buf)) {
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200481 strbuf_addf(msg,
482 "%s\t\tbranch '%s'%s of .\n",
Junio C Hamanoae8e4c92011-11-07 13:26:22 -0800483 sha1_to_hex(remote_head->object.sha1),
Junio C Hamano9b6bf4d2008-07-30 01:12:19 -0700484 truname.buf + 11,
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200485 (early ? " (early part)" : ""));
Junio C Hamanoc9717ee2009-02-13 23:26:12 -0800486 strbuf_release(&truname);
487 goto cleanup;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200488 }
489 }
490
491 if (!strcmp(remote, "FETCH_HEAD") &&
492 !access(git_path("FETCH_HEAD"), R_OK)) {
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600493 const char *filename;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200494 FILE *fp;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500495 struct strbuf line = STRBUF_INIT;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200496 char *ptr;
497
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600498 filename = git_path("FETCH_HEAD");
499 fp = fopen(filename, "r");
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200500 if (!fp)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000501 die_errno(_("could not open '%s' for reading"),
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600502 filename);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200503 strbuf_getline(&line, fp, '\n');
504 fclose(fp);
505 ptr = strstr(line.buf, "\tnot-for-merge\t");
506 if (ptr)
507 strbuf_remove(&line, ptr-line.buf+1, 13);
508 strbuf_addbuf(msg, &line);
509 strbuf_release(&line);
Junio C Hamanoc9717ee2009-02-13 23:26:12 -0800510 goto cleanup;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200511 }
512 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
Junio C Hamanoae8e4c92011-11-07 13:26:22 -0800513 sha1_to_hex(remote_head->object.sha1), remote);
Junio C Hamanoc9717ee2009-02-13 23:26:12 -0800514cleanup:
515 strbuf_release(&buf);
516 strbuf_release(&bname);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200517}
518
Junio C Hamano0d8fc3e2011-05-04 17:42:51 -0700519static void parse_branch_merge_options(char *bmo)
520{
521 const char **argv;
522 int argc;
523
524 if (!bmo)
525 return;
526 argc = split_cmdline(bmo, &argv);
527 if (argc < 0)
Junio C Hamanoc7fe5b62011-05-11 11:38:36 -0700528 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
529 split_cmdline_strerror(argc));
Junio C Hamano0d8fc3e2011-05-04 17:42:51 -0700530 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
531 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
532 argc++;
533 argv[0] = "branch.*.mergeoptions";
534 parse_options(argc, argv, NULL, builtin_merge_options,
535 builtin_merge_usage, 0);
536 free(argv);
537}
538
Stephan Beyer186458b2008-07-24 01:09:35 +0200539static int git_merge_config(const char *k, const char *v, void *cb)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200540{
Junio C Hamano898eacd2011-10-06 23:12:09 -0700541 int status;
542
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200543 if (branch && !prefixcmp(k, "branch.") &&
544 !prefixcmp(k + 7, branch) &&
545 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
Junio C Hamano0d8fc3e2011-05-04 17:42:51 -0700546 free(branch_mergeoptions);
547 branch_mergeoptions = xstrdup(v);
548 return 0;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200549 }
550
551 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
552 show_diffstat = git_config_bool(k, v);
553 else if (!strcmp(k, "pull.twohead"))
554 return git_config_string(&pull_twohead, k, v);
555 else if (!strcmp(k, "pull.octopus"))
556 return git_config_string(&pull_octopus, k, v);
Jonathan Nieder7610fa52010-08-05 06:32:41 -0500557 else if (!strcmp(k, "merge.renormalize"))
558 option_renormalize = git_config_bool(k, v);
Junio C Hamano898eacd2011-10-06 23:12:09 -0700559 else if (!strcmp(k, "merge.ff")) {
Junio C Hamanof23e8de2011-05-06 12:27:05 -0700560 int boolval = git_config_maybe_bool(k, v);
561 if (0 <= boolval) {
562 allow_fast_forward = boolval;
563 } else if (v && !strcmp(v, "only")) {
564 allow_fast_forward = 1;
565 fast_forward_only = 1;
566 } /* do not barf on values from future versions of git */
567 return 0;
Junio C Hamano93e535a2011-03-23 23:48:24 -0700568 } else if (!strcmp(k, "merge.defaulttoupstream")) {
569 default_to_upstream = git_config_bool(k, v);
570 return 0;
Ramkumar Ramachandra96e94202010-09-08 23:29:54 +0530571 }
Junio C Hamano898eacd2011-10-06 23:12:09 -0700572 status = fmt_merge_msg_config(k, v, cb);
573 if (status)
574 return status;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200575 return git_diff_ui_config(k, v, cb);
576}
577
578static int read_tree_trivial(unsigned char *common, unsigned char *head,
579 unsigned char *one)
580{
581 int i, nr_trees = 0;
582 struct tree *trees[MAX_UNPACK_TREES];
583 struct tree_desc t[MAX_UNPACK_TREES];
584 struct unpack_trees_options opts;
585
586 memset(&opts, 0, sizeof(opts));
587 opts.head_idx = 2;
588 opts.src_index = &the_index;
589 opts.dst_index = &the_index;
590 opts.update = 1;
591 opts.verbose_update = 1;
592 opts.trivial_merges_only = 1;
593 opts.merge = 1;
594 trees[nr_trees] = parse_tree_indirect(common);
595 if (!trees[nr_trees++])
596 return -1;
597 trees[nr_trees] = parse_tree_indirect(head);
598 if (!trees[nr_trees++])
599 return -1;
600 trees[nr_trees] = parse_tree_indirect(one);
601 if (!trees[nr_trees++])
602 return -1;
603 opts.fn = threeway_merge;
604 cache_tree_free(&active_cache_tree);
605 for (i = 0; i < nr_trees; i++) {
606 parse_tree(trees[i]);
607 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
608 }
609 if (unpack_trees(nr_trees, t, &opts))
610 return -1;
611 return 0;
612}
613
614static void write_tree_trivial(unsigned char *sha1)
615{
616 if (write_cache_as_tree(sha1, 0, NULL))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000617 die(_("git write-tree failed to write a tree"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200618}
619
Jeff King16180732011-05-12 07:09:46 -0400620static const char *merge_argument(struct commit *commit)
621{
622 if (commit)
623 return sha1_to_hex(commit->object.sha1);
624 else
625 return EMPTY_TREE_SHA1_HEX;
626}
627
Jonathan Nieder67ac1e12010-12-10 18:51:44 -0600628int try_merge_command(const char *strategy, size_t xopts_nr,
629 const char **xopts, struct commit_list *common,
Christian Couderc674d052010-03-31 21:22:07 +0200630 const char *head_arg, struct commit_list *remotes)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200631{
632 const char **args;
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500633 int i = 0, x = 0, ret;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200634 struct commit_list *j;
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500635 struct strbuf buf = STRBUF_INIT;
Christian Couder3f9083c2010-03-31 21:22:06 +0200636
637 args = xmalloc((4 + xopts_nr + commit_list_count(common) +
638 commit_list_count(remotes)) * sizeof(char *));
639 strbuf_addf(&buf, "merge-%s", strategy);
640 args[i++] = buf.buf;
641 for (x = 0; x < xopts_nr; x++) {
642 char *s = xmalloc(strlen(xopts[x])+2+1);
643 strcpy(s, "--");
644 strcpy(s+2, xopts[x]);
645 args[i++] = s;
646 }
647 for (j = common; j; j = j->next)
Jeff King16180732011-05-12 07:09:46 -0400648 args[i++] = xstrdup(merge_argument(j->item));
Christian Couder3f9083c2010-03-31 21:22:06 +0200649 args[i++] = "--";
650 args[i++] = head_arg;
651 for (j = remotes; j; j = j->next)
Jeff King16180732011-05-12 07:09:46 -0400652 args[i++] = xstrdup(merge_argument(j->item));
Christian Couder3f9083c2010-03-31 21:22:06 +0200653 args[i] = NULL;
654 ret = run_command_v_opt(args, RUN_GIT_CMD);
655 strbuf_release(&buf);
656 i = 1;
657 for (x = 0; x < xopts_nr; x++)
658 free((void *)args[i++]);
659 for (j = common; j; j = j->next)
660 free((void *)args[i++]);
661 i += 2;
662 for (j = remotes; j; j = j->next)
663 free((void *)args[i++]);
664 free(args);
665 discard_cache();
666 if (read_cache() < 0)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000667 die(_("failed to read the cache"));
Christian Couder3f9083c2010-03-31 21:22:06 +0200668 resolve_undo_clear();
669
670 return ret;
671}
672
673static int try_merge_strategy(const char *strategy, struct commit_list *common,
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000674 struct commit *head, const char *head_arg)
Christian Couder3f9083c2010-03-31 21:22:06 +0200675{
Miklos Vajna668f26f2008-10-03 15:02:31 +0200676 int index_fd;
677 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
678
679 index_fd = hold_locked_index(lock, 1);
680 refresh_cache(REFRESH_QUIET);
681 if (active_cache_changed &&
682 (write_cache(index_fd, active_cache, active_nr) ||
683 commit_locked_index(lock)))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000684 return error(_("Unable to write index."));
Miklos Vajna668f26f2008-10-03 15:02:31 +0200685 rollback_lock_file(lock);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200686
Miklos Vajna18668f52008-08-28 15:43:00 +0200687 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
Christian Couder3f9083c2010-03-31 21:22:06 +0200688 int clean, x;
Miklos Vajna18668f52008-08-28 15:43:00 +0200689 struct commit *result;
690 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
691 int index_fd;
692 struct commit_list *reversed = NULL;
693 struct merge_options o;
Christian Couder3f9083c2010-03-31 21:22:06 +0200694 struct commit_list *j;
Miklos Vajna18668f52008-08-28 15:43:00 +0200695
696 if (remoteheads->next) {
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000697 error(_("Not handling anything other than two heads merge."));
Miklos Vajna18668f52008-08-28 15:43:00 +0200698 return 2;
699 }
700
701 init_merge_options(&o);
702 if (!strcmp(strategy, "subtree"))
Junio C Hamano85e51b72008-06-30 22:18:57 -0700703 o.subtree_shift = "";
Avery Pennarun8cc5b292009-11-25 21:23:55 -0500704
Jonathan Nieder7610fa52010-08-05 06:32:41 -0500705 o.renormalize = option_renormalize;
Jeff King99bfc662011-02-20 04:53:21 -0500706 o.show_rename_progress =
707 show_progress == -1 ? isatty(2) : show_progress;
Jonathan Nieder7610fa52010-08-05 06:32:41 -0500708
Jonathan Nieder635a7bb2010-08-26 00:47:58 -0500709 for (x = 0; x < xopts_nr; x++)
710 if (parse_merge_opt(&o, xopts[x]))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000711 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
Miklos Vajna18668f52008-08-28 15:43:00 +0200712
713 o.branch1 = head_arg;
Junio C Hamanoae8e4c92011-11-07 13:26:22 -0800714 o.branch2 = merge_remote_util(remoteheads->item)->name;
Miklos Vajna18668f52008-08-28 15:43:00 +0200715
716 for (j = common; j; j = j->next)
717 commit_list_insert(j->item, &reversed);
718
719 index_fd = hold_locked_index(lock, 1);
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000720 clean = merge_recursive(&o, head,
Miklos Vajna18668f52008-08-28 15:43:00 +0200721 remoteheads->item, reversed, &result);
722 if (active_cache_changed &&
723 (write_cache(index_fd, active_cache, active_nr) ||
724 commit_locked_index(lock)))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000725 die (_("unable to write %s"), get_index_file());
Miklos Vajna42716662008-09-06 18:29:49 +0200726 rollback_lock_file(lock);
Miklos Vajna18668f52008-08-28 15:43:00 +0200727 return clean ? 0 : 1;
728 } else {
Jonathan Nieder67ac1e12010-12-10 18:51:44 -0600729 return try_merge_command(strategy, xopts_nr, xopts,
730 common, head_arg, remoteheads);
Miklos Vajna18668f52008-08-28 15:43:00 +0200731 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200732}
733
734static void count_diff_files(struct diff_queue_struct *q,
735 struct diff_options *opt, void *data)
736{
737 int *count = data;
738
739 (*count) += q->nr;
740}
741
742static int count_unmerged_entries(void)
743{
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200744 int i, ret = 0;
745
Junio C Hamanobe6ff812009-12-17 22:23:54 -0800746 for (i = 0; i < active_nr; i++)
747 if (ce_stage(active_cache[i]))
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200748 ret++;
749
750 return ret;
751}
752
Junio C Hamanocac42b22010-03-06 21:34:41 +0100753int checkout_fast_forward(const unsigned char *head, const unsigned char *remote)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200754{
755 struct tree *trees[MAX_UNPACK_TREES];
756 struct unpack_trees_options opts;
757 struct tree_desc t[MAX_UNPACK_TREES];
758 int i, fd, nr_trees = 0;
759 struct dir_struct dir;
760 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
761
Junio C Hamano9ca8f602008-08-20 15:09:28 -0700762 refresh_cache(REFRESH_QUIET);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200763
764 fd = hold_locked_index(lock_file, 1);
765
766 memset(&trees, 0, sizeof(trees));
767 memset(&opts, 0, sizeof(opts));
768 memset(&t, 0, sizeof(t));
Pierre Habouzit5d2299d2008-07-21 22:32:53 -0700769 memset(&dir, 0, sizeof(dir));
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100770 dir.flags |= DIR_SHOW_IGNORED;
Nguyễn Thái Ngọc Duyfc001b52011-11-27 17:15:32 +0700771 setup_standard_excludes(&dir);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200772 opts.dir = &dir;
773
774 opts.head_idx = 1;
775 opts.src_index = &the_index;
776 opts.dst_index = &the_index;
777 opts.update = 1;
778 opts.verbose_update = 1;
779 opts.merge = 1;
780 opts.fn = twoway_merge;
Matthieu Moye2940302010-09-02 13:57:34 +0200781 setup_unpack_trees_porcelain(&opts, "merge");
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200782
783 trees[nr_trees] = parse_tree_indirect(head);
784 if (!trees[nr_trees++])
785 return -1;
786 trees[nr_trees] = parse_tree_indirect(remote);
787 if (!trees[nr_trees++])
788 return -1;
789 for (i = 0; i < nr_trees; i++) {
790 parse_tree(trees[i]);
791 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
792 }
793 if (unpack_trees(nr_trees, t, &opts))
794 return -1;
795 if (write_cache(fd, active_cache, active_nr) ||
796 commit_locked_index(lock_file))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000797 die(_("unable to write new index file"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200798 return 0;
799}
800
801static void split_merge_strategies(const char *string, struct strategy **list,
802 int *nr, int *alloc)
803{
804 char *p, *q, *buf;
805
806 if (!string)
807 return;
808
809 buf = xstrdup(string);
810 q = buf;
811 for (;;) {
812 p = strchr(q, ' ');
813 if (!p) {
814 ALLOC_GROW(*list, *nr + 1, *alloc);
815 (*list)[(*nr)++].name = xstrdup(q);
816 free(buf);
817 return;
818 } else {
819 *p = '\0';
820 ALLOC_GROW(*list, *nr + 1, *alloc);
821 (*list)[(*nr)++].name = xstrdup(q);
822 q = ++p;
823 }
824 }
825}
826
827static void add_strategies(const char *string, unsigned attr)
828{
829 struct strategy *list = NULL;
830 int list_alloc = 0, list_nr = 0, i;
831
832 memset(&list, 0, sizeof(list));
833 split_merge_strategies(string, &list, &list_nr, &list_alloc);
Miklos Vajna1719b5e2008-07-21 18:10:47 +0200834 if (list) {
835 for (i = 0; i < list_nr; i++)
836 append_strategy(get_strategy(list[i].name));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200837 return;
838 }
839 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
840 if (all_strategy[i].attr & attr)
841 append_strategy(&all_strategy[i]);
842
843}
844
Jay Soffian66f4b982011-10-08 14:39:52 -0400845static void write_merge_msg(struct strbuf *msg)
Jay Soffian65969d42011-02-14 20:07:50 -0500846{
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600847 const char *filename = git_path("MERGE_MSG");
848 int fd = open(filename, O_WRONLY | O_CREAT, 0666);
Jay Soffian65969d42011-02-14 20:07:50 -0500849 if (fd < 0)
Junio C Hamano6c80cd22011-04-01 17:55:55 -0700850 die_errno(_("Could not open '%s' for writing"),
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600851 filename);
Jay Soffian66f4b982011-10-08 14:39:52 -0400852 if (write_in_full(fd, msg->buf, msg->len) != msg->len)
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600853 die_errno(_("Could not write to '%s'"), filename);
Jay Soffian65969d42011-02-14 20:07:50 -0500854 close(fd);
855}
856
Jay Soffian66f4b982011-10-08 14:39:52 -0400857static void read_merge_msg(struct strbuf *msg)
Jay Soffian65969d42011-02-14 20:07:50 -0500858{
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600859 const char *filename = git_path("MERGE_MSG");
Jay Soffian66f4b982011-10-08 14:39:52 -0400860 strbuf_reset(msg);
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600861 if (strbuf_read_file(msg, filename, 0) < 0)
862 die_errno(_("Could not read from '%s'"), filename);
Jay Soffian65969d42011-02-14 20:07:50 -0500863}
864
Jay Soffian66f4b982011-10-08 14:39:52 -0400865static void write_merge_state(void);
866static void abort_commit(const char *err_msg)
Jay Soffian65969d42011-02-14 20:07:50 -0500867{
Jay Soffian66f4b982011-10-08 14:39:52 -0400868 if (err_msg)
869 error("%s", err_msg);
870 fprintf(stderr,
871 _("Not committing merge; use 'git commit' to complete the merge.\n"));
872 write_merge_state();
873 exit(1);
874}
875
876static void prepare_to_commit(void)
877{
878 struct strbuf msg = STRBUF_INIT;
879 strbuf_addbuf(&msg, &merge_msg);
880 strbuf_addch(&msg, '\n');
881 write_merge_msg(&msg);
Jay Soffian65969d42011-02-14 20:07:50 -0500882 run_hook(get_index_file(), "prepare-commit-msg",
883 git_path("MERGE_MSG"), "merge", NULL, NULL);
Jay Soffian66f4b982011-10-08 14:39:52 -0400884 if (option_edit) {
885 if (launch_editor(git_path("MERGE_MSG"), NULL, NULL))
886 abort_commit(NULL);
887 }
888 read_merge_msg(&msg);
889 stripspace(&msg, option_edit);
890 if (!msg.len)
891 abort_commit(_("Empty commit message."));
892 strbuf_release(&merge_msg);
893 strbuf_addbuf(&merge_msg, &msg);
894 strbuf_release(&msg);
Jay Soffian65969d42011-02-14 20:07:50 -0500895}
896
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000897static int merge_trivial(struct commit *head)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200898{
899 unsigned char result_tree[20], result_commit[20];
Brandon Casey36e40532008-10-08 19:07:54 -0500900 struct commit_list *parent = xmalloc(sizeof(*parent));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200901
902 write_tree_trivial(result_tree);
Ævar Arnfjörð Bjarmason157efde2011-02-22 23:42:02 +0000903 printf(_("Wonderful.\n"));
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000904 parent->item = head;
Brandon Casey36e40532008-10-08 19:07:54 -0500905 parent->next = xmalloc(sizeof(*parent->next));
Junio C Hamano446247d2008-08-23 12:56:57 -0700906 parent->next->item = remoteheads->item;
907 parent->next->next = NULL;
Jay Soffian66f4b982011-10-08 14:39:52 -0400908 prepare_to_commit();
Miklos Vajnaee20a122008-09-10 22:10:31 +0200909 commit_tree(merge_msg.buf, result_tree, parent, result_commit, NULL);
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000910 finish(head, result_commit, "In-index merge");
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200911 drop_save();
912 return 0;
913}
914
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000915static int finish_automerge(struct commit *head,
916 struct commit_list *common,
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200917 unsigned char *result_tree,
918 const char *wt_strategy)
919{
920 struct commit_list *parents = NULL, *j;
921 struct strbuf buf = STRBUF_INIT;
922 unsigned char result_commit[20];
923
924 free_commit_list(common);
925 if (allow_fast_forward) {
926 parents = remoteheads;
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000927 commit_list_insert(head, &parents);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200928 parents = reduce_heads(parents);
929 } else {
930 struct commit_list **pptr = &parents;
931
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000932 pptr = &commit_list_insert(head,
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200933 pptr)->next;
934 for (j = remoteheads; j; j = j->next)
935 pptr = &commit_list_insert(j->item, pptr)->next;
936 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200937 strbuf_addch(&merge_msg, '\n');
Jay Soffian66f4b982011-10-08 14:39:52 -0400938 prepare_to_commit();
939 free_commit_list(remoteheads);
Miklos Vajnaee20a122008-09-10 22:10:31 +0200940 commit_tree(merge_msg.buf, result_tree, parents, result_commit, NULL);
Junio C Hamanof23101b2011-05-25 12:43:59 -0700941 strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000942 finish(head, result_commit, buf.buf);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200943 strbuf_release(&buf);
944 drop_save();
945 return 0;
946}
947
Jonathan Nieder7610fa52010-08-05 06:32:41 -0500948static int suggest_conflicts(int renormalizing)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200949{
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600950 const char *filename;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200951 FILE *fp;
952 int pos;
953
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600954 filename = git_path("MERGE_MSG");
955 fp = fopen(filename, "a");
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200956 if (!fp)
Jonathan Nieder418c9b12011-11-16 02:03:36 -0600957 die_errno(_("Could not open '%s' for writing"), filename);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200958 fprintf(fp, "\nConflicts:\n");
959 for (pos = 0; pos < active_nr; pos++) {
960 struct cache_entry *ce = active_cache[pos];
961
962 if (ce_stage(ce)) {
963 fprintf(fp, "\t%s\n", ce->name);
964 while (pos + 1 < active_nr &&
965 !strcmp(ce->name,
966 active_cache[pos + 1]->name))
967 pos++;
968 }
969 }
970 fclose(fp);
Junio C Hamanocb6020b2009-12-04 00:20:48 -0800971 rerere(allow_rerere_auto);
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000972 printf(_("Automatic merge failed; "
973 "fix conflicts and then commit the result.\n"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200974 return 1;
975}
976
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +1000977static struct commit *is_old_style_invocation(int argc, const char **argv,
978 const unsigned char *head)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200979{
980 struct commit *second_token = NULL;
Junio C Hamano76bf4882009-12-02 09:59:35 -0800981 if (argc > 2) {
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200982 unsigned char second_sha1[20];
983
984 if (get_sha1(argv[1], second_sha1))
985 return NULL;
986 second_token = lookup_commit_reference_gently(second_sha1, 0);
987 if (!second_token)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +0000988 die(_("'%s' is not a commit"), argv[1]);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +0200989 if (hashcmp(second_token->object.sha1, head))
990 return NULL;
991 }
992 return second_token;
993}
994
995static int evaluate_result(void)
996{
997 int cnt = 0;
998 struct rev_info rev;
999
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001000 /* Check how many files differ. */
1001 init_revisions(&rev, "");
1002 setup_revisions(0, NULL, &rev, NULL);
1003 rev.diffopt.output_format |=
1004 DIFF_FORMAT_CALLBACK;
1005 rev.diffopt.format_callback = count_diff_files;
1006 rev.diffopt.format_callback_data = &cnt;
1007 run_diff_files(&rev, 0);
1008
1009 /*
1010 * Check how many unmerged entries are
1011 * there.
1012 */
1013 cnt += count_unmerged_entries();
1014
1015 return cnt;
1016}
1017
Junio C Hamano93e535a2011-03-23 23:48:24 -07001018/*
1019 * Pretend as if the user told us to merge with the tracking
1020 * branch we have for the upstream of the current branch
1021 */
1022static int setup_with_upstream(const char ***argv)
1023{
1024 struct branch *branch = branch_get(NULL);
1025 int i;
1026 const char **args;
1027
1028 if (!branch)
Ævar Arnfjörð Bjarmasonc7f426d2011-04-10 19:34:04 +00001029 die(_("No current branch."));
Junio C Hamano93e535a2011-03-23 23:48:24 -07001030 if (!branch->remote)
Ævar Arnfjörð Bjarmasonc7f426d2011-04-10 19:34:04 +00001031 die(_("No remote for the current branch."));
Junio C Hamano93e535a2011-03-23 23:48:24 -07001032 if (!branch->merge_nr)
Ævar Arnfjörð Bjarmasonc7f426d2011-04-10 19:34:04 +00001033 die(_("No default upstream defined for the current branch."));
Junio C Hamano93e535a2011-03-23 23:48:24 -07001034
1035 args = xcalloc(branch->merge_nr + 1, sizeof(char *));
1036 for (i = 0; i < branch->merge_nr; i++) {
1037 if (!branch->merge[i]->dst)
Ævar Arnfjörð Bjarmasonc7f426d2011-04-10 19:34:04 +00001038 die(_("No remote tracking branch for %s from %s"),
Junio C Hamano93e535a2011-03-23 23:48:24 -07001039 branch->merge[i]->src, branch->remote_name);
1040 args[i] = branch->merge[i]->dst;
1041 }
1042 args[i] = NULL;
1043 *argv = args;
1044 return i;
1045}
1046
Jay Soffian66f4b982011-10-08 14:39:52 -04001047static void write_merge_state(void)
1048{
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001049 const char *filename;
Jay Soffian66f4b982011-10-08 14:39:52 -04001050 int fd;
1051 struct commit_list *j;
1052 struct strbuf buf = STRBUF_INIT;
1053
Junio C Hamano274a5c02011-11-07 14:45:10 -08001054 for (j = remoteheads; j; j = j->next) {
1055 unsigned const char *sha1;
1056 struct commit *c = j->item;
1057 if (c->util && merge_remote_util(c)->obj) {
1058 sha1 = merge_remote_util(c)->obj->sha1;
1059 } else {
1060 sha1 = c->object.sha1;
1061 }
1062 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
1063 }
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001064 filename = git_path("MERGE_HEAD");
1065 fd = open(filename, O_WRONLY | O_CREAT, 0666);
Jay Soffian66f4b982011-10-08 14:39:52 -04001066 if (fd < 0)
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001067 die_errno(_("Could not open '%s' for writing"), filename);
Jay Soffian66f4b982011-10-08 14:39:52 -04001068 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001069 die_errno(_("Could not write to '%s'"), filename);
Jay Soffian66f4b982011-10-08 14:39:52 -04001070 close(fd);
1071 strbuf_addch(&merge_msg, '\n');
1072 write_merge_msg(&merge_msg);
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001073
1074 filename = git_path("MERGE_MODE");
1075 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
Jay Soffian66f4b982011-10-08 14:39:52 -04001076 if (fd < 0)
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001077 die_errno(_("Could not open '%s' for writing"), filename);
Jay Soffian66f4b982011-10-08 14:39:52 -04001078 strbuf_reset(&buf);
1079 if (!allow_fast_forward)
1080 strbuf_addf(&buf, "no-ff");
1081 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
Jonathan Nieder418c9b12011-11-16 02:03:36 -06001082 die_errno(_("Could not write to '%s'"), filename);
Jay Soffian66f4b982011-10-08 14:39:52 -04001083 close(fd);
1084}
1085
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001086int cmd_merge(int argc, const char **argv, const char *prefix)
1087{
1088 unsigned char result_tree[20];
Nguyễn Thái Ngọc Duyb4fd9402011-08-19 21:50:05 +07001089 unsigned char stash[20];
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001090 unsigned char head_sha1[20];
1091 struct commit *head_commit;
Brandon Caseyf285a2d2008-10-09 14:12:12 -05001092 struct strbuf buf = STRBUF_INIT;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001093 const char *head_arg;
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001094 int flag, i, ret = 0;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001095 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1096 struct commit_list *common = NULL;
1097 const char *best_strategy = NULL, *wt_strategy = NULL;
1098 struct commit_list **remotes = &remoteheads;
1099
Nguyễn Thái Ngọc Duyda53eec2010-10-22 01:49:45 -05001100 if (argc == 2 && !strcmp(argv[1], "-h"))
1101 usage_with_options(builtin_merge_usage, builtin_merge_options);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001102
1103 /*
1104 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1105 * current branch.
1106 */
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001107 branch = resolve_ref("HEAD", head_sha1, 0, &flag);
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001108 if (branch) {
1109 if (!prefixcmp(branch, "refs/heads/"))
1110 branch += 11;
1111 branch = xstrdup(branch);
1112 }
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001113 if (!branch || is_null_sha1(head_sha1))
1114 head_commit = NULL;
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +10001115 else
1116 head_commit = lookup_commit_or_die(head_sha1, "HEAD");
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001117
1118 git_config(git_merge_config, NULL);
1119
Junio C Hamano0d8fc3e2011-05-04 17:42:51 -07001120 if (branch_mergeoptions)
1121 parse_branch_merge_options(branch_mergeoptions);
Stephen Boyd37782922009-05-23 11:53:12 -07001122 argc = parse_options(argc, argv, prefix, builtin_merge_options,
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001123 builtin_merge_usage, 0);
Junio C Hamano898eacd2011-10-06 23:12:09 -07001124 if (shortlog_len < 0)
1125 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
Johan Herland2a22c1b2010-11-09 22:49:58 +01001126
Jeff King99bfc662011-02-20 04:53:21 -05001127 if (verbosity < 0 && show_progress == -1)
1128 show_progress = 0;
1129
Johan Herland35d2fff2010-11-09 22:49:59 +01001130 if (abort_current_merge) {
1131 int nargc = 2;
1132 const char *nargv[] = {"reset", "--merge", NULL};
1133
1134 if (!file_exists(git_path("MERGE_HEAD")))
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001135 die(_("There is no merge to abort (MERGE_HEAD missing)."));
Johan Herland35d2fff2010-11-09 22:49:59 +01001136
1137 /* Invoke 'git reset --merge' */
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001138 ret = cmd_reset(nargc, nargv, prefix);
1139 goto done;
Johan Herland35d2fff2010-11-09 22:49:59 +01001140 }
1141
Johan Herland2a22c1b2010-11-09 22:49:58 +01001142 if (read_cache_unmerged())
1143 die_resolve_conflict("merge");
1144
1145 if (file_exists(git_path("MERGE_HEAD"))) {
1146 /*
1147 * There is no unmerged entry, don't advise 'git
1148 * add/rm <file>', just 'git commit'.
1149 */
1150 if (advice_resolve_conflict)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001151 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1152 "Please, commit your changes before you can merge."));
Johan Herland2a22c1b2010-11-09 22:49:58 +01001153 else
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001154 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
Johan Herland2a22c1b2010-11-09 22:49:58 +01001155 }
Jay Soffiand7e5c0c2011-02-19 23:12:27 -05001156 if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
1157 if (advice_resolve_conflict)
Ævar Arnfjörð Bjarmasonf68f1802011-04-10 19:34:05 +00001158 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1159 "Please, commit your changes before you can merge."));
Jay Soffiand7e5c0c2011-02-19 23:12:27 -05001160 else
Ævar Arnfjörð Bjarmasonf68f1802011-04-10 19:34:05 +00001161 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
Jay Soffiand7e5c0c2011-02-19 23:12:27 -05001162 }
Johan Herland2a22c1b2010-11-09 22:49:58 +01001163 resolve_undo_clear();
1164
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +01001165 if (verbosity < 0)
1166 show_diffstat = 0;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001167
1168 if (squash) {
1169 if (!allow_fast_forward)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001170 die(_("You cannot combine --squash with --no-ff."));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001171 option_commit = 0;
1172 }
1173
Björn Gustavsson13474832009-10-29 23:08:31 +01001174 if (!allow_fast_forward && fast_forward_only)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001175 die(_("You cannot combine --no-ff with --ff-only."));
Björn Gustavsson13474832009-10-29 23:08:31 +01001176
Junio C Hamano4e8115f2011-04-07 15:57:57 -07001177 if (!abort_current_merge) {
Vincent van Ravesteijn54802072011-11-21 14:30:40 +01001178 if (!argc) {
1179 if (default_to_upstream)
1180 argc = setup_with_upstream(&argv);
1181 else
1182 die(_("No commit specified and merge.defaultToUpstream not set."));
1183 } else if (argc == 1 && !strcmp(argv[0], "-"))
Junio C Hamano4e8115f2011-04-07 15:57:57 -07001184 argv[0] = "@{-1}";
1185 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001186 if (!argc)
1187 usage_with_options(builtin_merge_usage,
1188 builtin_merge_options);
1189
1190 /*
1191 * This could be traditional "merge <msg> HEAD <commit>..." and
1192 * the way we can tell it is to see if the second token is HEAD,
1193 * but some people might have misused the interface and used a
1194 * committish that is the same as HEAD there instead.
1195 * Traditional format never would have "-m" so it is an
1196 * additional safety measure to check for it.
1197 */
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001198
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001199 if (!have_message && head_commit &&
1200 is_old_style_invocation(argc, argv, head_commit->object.sha1)) {
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001201 strbuf_addstr(&merge_msg, argv[0]);
1202 head_arg = argv[1];
1203 argv += 2;
1204 argc -= 2;
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001205 } else if (!head_commit) {
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001206 struct commit *remote_head;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001207 /*
1208 * If the merged head is a valid one there is no reason
1209 * to forbid "git merge" into a branch yet to be born.
1210 * We do the same for "git pull".
1211 */
1212 if (argc != 1)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001213 die(_("Can merge only exactly one commit into "
1214 "empty head"));
Paolo Bonzini4be636f2008-08-21 14:14:18 +02001215 if (squash)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001216 die(_("Squash commit into empty head not supported yet"));
Paolo Bonzini4be636f2008-08-21 14:14:18 +02001217 if (!allow_fast_forward)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001218 die(_("Non-fast-forward commit does not make sense into "
1219 "an empty head"));
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001220 remote_head = get_merge_parent(argv[0]);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001221 if (!remote_head)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001222 die(_("%s - not something we can merge"), argv[0]);
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001223 read_empty(remote_head->object.sha1, 0);
1224 update_ref("initial pull", "HEAD", remote_head->object.sha1,
1225 NULL, 0, DIE_ON_ERR);
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001226 goto done;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001227 } else {
Tay Ray Chuan97d45bc2010-05-11 01:17:48 +08001228 struct strbuf merge_names = STRBUF_INIT;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001229
1230 /* We are invoked directly as the first-class UI. */
1231 head_arg = "HEAD";
1232
1233 /*
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001234 * All the rest are the commits being merged; prepare
1235 * the standard merge summary message to be appended
1236 * to the given message.
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001237 */
Tay Ray Chuanf0ecac22010-05-11 01:17:52 +08001238 for (i = 0; i < argc; i++)
1239 merge_name(argv[i], &merge_names);
1240
Ramkumar Ramachandra96e94202010-09-08 23:29:54 +05301241 if (!have_message || shortlog_len) {
Junio C Hamanocbda1212011-11-04 17:35:42 -07001242 struct fmt_merge_msg_opts opts;
1243 memset(&opts, 0, sizeof(opts));
1244 opts.add_title = !have_message;
1245 opts.shortlog_len = shortlog_len;
1246
1247 fmt_merge_msg(&merge_names, &merge_msg, &opts);
Ramkumar Ramachandra18761662010-09-08 23:29:53 +05301248 if (merge_msg.len)
1249 strbuf_setlen(&merge_msg, merge_msg.len - 1);
1250 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001251 }
1252
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001253 if (!head_commit || !argc)
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001254 usage_with_options(builtin_merge_usage,
1255 builtin_merge_options);
1256
1257 strbuf_addstr(&buf, "merge");
1258 for (i = 0; i < argc; i++)
1259 strbuf_addf(&buf, " %s", argv[i]);
1260 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1261 strbuf_reset(&buf);
1262
1263 for (i = 0; i < argc; i++) {
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001264 struct commit *commit = get_merge_parent(argv[i]);
1265 if (!commit)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001266 die(_("%s - not something we can merge"), argv[i]);
Miklos Vajna18668f52008-08-28 15:43:00 +02001267 remotes = &commit_list_insert(commit, remotes)->next;
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001268 strbuf_addf(&buf, "GITHEAD_%s",
1269 sha1_to_hex(commit->object.sha1));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001270 setenv(buf.buf, argv[i], 1);
1271 strbuf_reset(&buf);
Junio C Hamanofab47d02011-11-07 16:29:34 -08001272 if (merge_remote_util(commit) &&
1273 merge_remote_util(commit)->obj &&
1274 merge_remote_util(commit)->obj->type == OBJ_TAG) {
1275 option_edit = 1;
1276 allow_fast_forward = 0;
1277 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001278 }
1279
1280 if (!use_strategies) {
1281 if (!remoteheads->next)
1282 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1283 else
1284 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1285 }
1286
1287 for (i = 0; i < use_strategies_nr; i++) {
1288 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1289 allow_fast_forward = 0;
1290 if (use_strategies[i]->attr & NO_TRIVIAL)
1291 allow_trivial = 0;
1292 }
1293
1294 if (!remoteheads->next)
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001295 common = get_merge_bases(head_commit, remoteheads->item, 1);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001296 else {
1297 struct commit_list *list = remoteheads;
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001298 commit_list_insert(head_commit, &list);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001299 common = get_octopus_merge_bases(list);
1300 free(list);
1301 }
1302
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001303 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head_commit->object.sha1,
1304 NULL, 0, DIE_ON_ERR);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001305
1306 if (!common)
1307 ; /* No common ancestors found. We need a real merge. */
1308 else if (!remoteheads->next && !common->next &&
1309 common->item == remoteheads->item) {
1310 /*
1311 * If head can reach all the merge then we are up to date.
1312 * but first the most common case of merging one remote.
1313 */
1314 finish_up_to_date("Already up-to-date.");
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001315 goto done;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001316 } else if (allow_fast_forward && !remoteheads->next &&
1317 !common->next &&
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001318 !hashcmp(common->item->object.sha1, head_commit->object.sha1)) {
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001319 /* Again the most common case of merging one remote. */
Brandon Caseyf285a2d2008-10-09 14:12:12 -05001320 struct strbuf msg = STRBUF_INIT;
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001321 struct commit *commit;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001322 char hex[41];
1323
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001324 strcpy(hex, find_unique_abbrev(head_commit->object.sha1, DEFAULT_ABBREV));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001325
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +01001326 if (verbosity >= 0)
Ævar Arnfjörð Bjarmason2ceb61e2011-02-22 23:42:00 +00001327 printf(_("Updating %s..%s\n"),
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +01001328 hex,
1329 find_unique_abbrev(remoteheads->item->object.sha1,
1330 DEFAULT_ABBREV));
Felipe Contrerasa75d7b52009-10-24 11:31:32 +03001331 strbuf_addstr(&msg, "Fast-forward");
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001332 if (have_message)
1333 strbuf_addstr(&msg,
1334 " (no commit created; -m option ignored)");
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001335 commit = remoteheads->item;
Junio C Hamanob7f7c072011-12-09 13:37:14 -08001336 if (!commit) {
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001337 ret = 1;
1338 goto done;
1339 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001340
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001341 if (checkout_fast_forward(head_commit->object.sha1,
Junio C Hamanob7f7c072011-12-09 13:37:14 -08001342 commit->object.sha1)) {
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001343 ret = 1;
1344 goto done;
1345 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001346
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001347 finish(head_commit, commit->object.sha1, msg.buf);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001348 drop_save();
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001349 goto done;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001350 } else if (!remoteheads->next && common->next)
1351 ;
1352 /*
Felipe Contrerasa75d7b52009-10-24 11:31:32 +03001353 * We are not doing octopus and not fast-forward. Need
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001354 * a real merge.
1355 */
1356 else if (!remoteheads->next && !common->next && option_commit) {
1357 /*
Felipe Contrerasa75d7b52009-10-24 11:31:32 +03001358 * We are not doing octopus, not fast-forward, and have
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001359 * only one common.
1360 */
1361 refresh_cache(REFRESH_QUIET);
Björn Gustavsson13474832009-10-29 23:08:31 +01001362 if (allow_trivial && !fast_forward_only) {
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001363 /* See if it is really trivial. */
1364 git_committer_info(IDENT_ERROR_ON_NO_NAME);
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001365 printf(_("Trying really trivial in-index merge...\n"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001366 if (!read_tree_trivial(common->item->object.sha1,
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001367 head_commit->object.sha1,
1368 remoteheads->item->object.sha1)) {
1369 ret = merge_trivial(head_commit);
1370 goto done;
1371 }
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001372 printf(_("Nope.\n"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001373 }
1374 } else {
1375 /*
1376 * An octopus. If we can reach all the remote we are up
1377 * to date.
1378 */
1379 int up_to_date = 1;
1380 struct commit_list *j;
1381
1382 for (j = remoteheads; j; j = j->next) {
1383 struct commit_list *common_one;
1384
1385 /*
1386 * Here we *have* to calculate the individual
1387 * merge_bases again, otherwise "git merge HEAD^
1388 * HEAD^^" would be missed.
1389 */
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001390 common_one = get_merge_bases(head_commit, j->item, 1);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001391 if (hashcmp(common_one->item->object.sha1,
1392 j->item->object.sha1)) {
1393 up_to_date = 0;
1394 break;
1395 }
1396 }
1397 if (up_to_date) {
1398 finish_up_to_date("Already up-to-date. Yeeah!");
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001399 goto done;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001400 }
1401 }
1402
Björn Gustavsson13474832009-10-29 23:08:31 +01001403 if (fast_forward_only)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001404 die(_("Not possible to fast-forward, aborting."));
Björn Gustavsson13474832009-10-29 23:08:31 +01001405
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001406 /* We are going to make a new commit. */
1407 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1408
1409 /*
1410 * At this point, we need a real merge. No matter what strategy
1411 * we use, it would operate on the index, possibly affecting the
1412 * working tree, and when resolved cleanly, have the desired
1413 * tree in the index -- this means that the index must be in
1414 * sync with the head commit. The strategies are responsible
1415 * to ensure this.
1416 */
Nguyễn Thái Ngọc Duyb4fd9402011-08-19 21:50:05 +07001417 if (use_strategies_nr == 1 ||
1418 /*
1419 * Stash away the local changes so that we can try more than one.
1420 */
1421 save_state(stash))
1422 hashcpy(stash, null_sha1);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001423
1424 for (i = 0; i < use_strategies_nr; i++) {
1425 int ret;
1426 if (i) {
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001427 printf(_("Rewinding the tree to pristine...\n"));
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001428 restore_state(head_commit->object.sha1, stash);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001429 }
1430 if (use_strategies_nr != 1)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001431 printf(_("Trying merge strategy %s...\n"),
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001432 use_strategies[i]->name);
1433 /*
1434 * Remember which strategy left the state in the working
1435 * tree.
1436 */
1437 wt_strategy = use_strategies[i]->name;
1438
1439 ret = try_merge_strategy(use_strategies[i]->name,
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001440 common, head_commit, head_arg);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001441 if (!option_commit && !ret) {
1442 merge_was_ok = 1;
1443 /*
1444 * This is necessary here just to avoid writing
1445 * the tree, but later we will *not* exit with
1446 * status code 1 because merge_was_ok is set.
1447 */
1448 ret = 1;
1449 }
1450
1451 if (ret) {
1452 /*
1453 * The backend exits with 1 when conflicts are
1454 * left to be resolved, with 2 when it does not
1455 * handle the given merge at all.
1456 */
1457 if (ret == 1) {
1458 int cnt = evaluate_result();
1459
1460 if (best_cnt <= 0 || cnt <= best_cnt) {
1461 best_strategy = use_strategies[i]->name;
1462 best_cnt = cnt;
1463 }
1464 }
1465 if (merge_was_ok)
1466 break;
1467 else
1468 continue;
1469 }
1470
1471 /* Automerge succeeded. */
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001472 write_tree_trivial(result_tree);
1473 automerge_was_ok = 1;
1474 break;
1475 }
1476
1477 /*
1478 * If we have a resulting tree, that means the strategy module
1479 * auto resolved the merge cleanly.
1480 */
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001481 if (automerge_was_ok) {
1482 ret = finish_automerge(head_commit, common, result_tree,
1483 wt_strategy);
1484 goto done;
1485 }
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001486
1487 /*
1488 * Pick the result from the best strategy and have the user fix
1489 * it up.
1490 */
1491 if (!best_strategy) {
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001492 restore_state(head_commit->object.sha1, stash);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001493 if (use_strategies_nr > 1)
1494 fprintf(stderr,
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001495 _("No merge strategy handled the merge.\n"));
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001496 else
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001497 fprintf(stderr, _("Merge with strategy %s failed.\n"),
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001498 use_strategies[0]->name);
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001499 ret = 2;
1500 goto done;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001501 } else if (best_strategy == wt_strategy)
1502 ; /* We already have its result in the working tree. */
1503 else {
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001504 printf(_("Rewinding the tree to pristine...\n"));
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001505 restore_state(head_commit->object.sha1, stash);
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001506 printf(_("Using the %s to prepare resolving by hand.\n"),
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001507 best_strategy);
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001508 try_merge_strategy(best_strategy, common, head_commit, head_arg);
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001509 }
1510
1511 if (squash)
Nguyễn Thái Ngọc Duy894642f2011-09-17 21:57:44 +10001512 finish(head_commit, NULL, NULL);
Jay Soffian66f4b982011-10-08 14:39:52 -04001513 else
1514 write_merge_state();
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001515
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001516 if (merge_was_ok)
Ævar Arnfjörð Bjarmasonbacec472011-02-22 23:41:59 +00001517 fprintf(stderr, _("Automatic merge went well; "
1518 "stopped before committing as requested\n"));
Nguyễn Thái Ngọc Duyd5a35c12011-11-13 17:22:15 +07001519 else
1520 ret = suggest_conflicts(option_renormalize);
1521
1522done:
1523 free((char *)branch);
1524 return ret;
Miklos Vajna1c7b76b2008-07-07 19:24:20 +02001525}