4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
9 #define USE_THE_INDEX_VARIABLE
15 #include "environment.h"
18 #include "object-name.h"
19 #include "parse-options.h"
21 #include "run-command.h"
24 #include "diff-merges.h"
31 #include "unpack-trees.h"
32 #include "cache-tree.h"
38 #include "merge-recursive.h"
39 #include "merge-ort-wrappers.h"
40 #include "resolve-undo.h"
42 #include "fmt-merge-msg.h"
43 #include "sequencer.h"
44 #include "string-list.h"
48 #include "commit-reach.h"
49 #include "wt-status.h"
50 #include "commit-graph.h"
52 #define DEFAULT_TWOHEAD (1<<0)
53 #define DEFAULT_OCTOPUS (1<<1)
54 #define NO_FAST_FORWARD (1<<2)
55 #define NO_TRIVIAL (1<<3)
62 static const char * const builtin_merge_usage
[] = {
63 N_("git merge [<options>] [<commit>...]"),
65 "git merge --continue",
69 static int show_diffstat
= 1, shortlog_len
= -1, squash
;
70 static int option_commit
= -1;
71 static int option_edit
= -1;
72 static int allow_trivial
= 1, have_message
, verify_signatures
;
73 static int check_trust_level
= 1;
74 static int overwrite_ignore
= 1;
75 static struct strbuf merge_msg
= STRBUF_INIT
;
76 static struct strategy
**use_strategies
;
77 static size_t use_strategies_nr
, use_strategies_alloc
;
78 static struct strvec xopts
= STRVEC_INIT
;
79 static const char *branch
;
80 static char *branch_mergeoptions
;
82 static int allow_rerere_auto
;
83 static int abort_current_merge
;
84 static int quit_current_merge
;
85 static int continue_current_merge
;
86 static int allow_unrelated_histories
;
87 static int show_progress
= -1;
88 static int default_to_upstream
= 1;
90 static const char *sign_commit
;
93 static char *into_name
;
95 static struct strategy all_strategy
[] = {
96 { "recursive", NO_TRIVIAL
},
97 { "octopus", DEFAULT_OCTOPUS
},
98 { "ort", DEFAULT_TWOHEAD
| NO_TRIVIAL
},
100 { "ours", NO_FAST_FORWARD
| NO_TRIVIAL
},
101 { "subtree", NO_FAST_FORWARD
| NO_TRIVIAL
},
104 static const char *pull_twohead
, *pull_octopus
;
112 static enum ff_type fast_forward
= FF_ALLOW
;
114 static const char *cleanup_arg
;
115 static enum commit_msg_cleanup_mode cleanup_mode
;
117 static int option_parse_message(const struct option
*opt
,
118 const char *arg
, int unset
)
120 struct strbuf
*buf
= opt
->value
;
123 strbuf_setlen(buf
, 0);
125 strbuf_addf(buf
, "%s%s", buf
->len
? "\n\n" : "", arg
);
128 return error(_("switch `m' requires a value"));
132 static enum parse_opt_result
option_read_message(struct parse_opt_ctx_t
*ctx
,
133 const struct option
*opt
,
134 const char *arg_not_used
,
137 struct strbuf
*buf
= opt
->value
;
140 BUG_ON_OPT_ARG(arg_not_used
);
142 BUG("-F cannot be negated");
147 } else if (ctx
->argc
> 1) {
151 return error(_("option `%s' requires a value"), opt
->long_name
);
154 strbuf_addch(buf
, '\n');
155 if (ctx
->prefix
&& !is_absolute_path(arg
))
156 arg
= prefix_filename(ctx
->prefix
, arg
);
157 if (strbuf_read_file(buf
, arg
, 0) < 0)
158 return error(_("could not read file '%s'"), arg
);
164 static struct strategy
*get_strategy(const char *name
)
167 struct strategy
*ret
;
168 static struct cmdnames main_cmds
, other_cmds
;
170 char *default_strategy
= getenv("GIT_TEST_MERGE_ALGORITHM");
175 if (default_strategy
&&
176 !strcmp(default_strategy
, "ort") &&
177 !strcmp(name
, "recursive")) {
181 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
182 if (!strcmp(name
, all_strategy
[i
].name
))
183 return &all_strategy
[i
];
186 struct cmdnames not_strategies
;
189 memset(¬_strategies
, 0, sizeof(struct cmdnames
));
190 load_command_list("git-merge-", &main_cmds
, &other_cmds
);
191 for (i
= 0; i
< main_cmds
.cnt
; i
++) {
193 struct cmdname
*ent
= main_cmds
.names
[i
];
194 for (j
= 0; !found
&& j
< ARRAY_SIZE(all_strategy
); j
++)
195 if (!xstrncmpz(all_strategy
[j
].name
, ent
->name
, ent
->len
))
198 add_cmdname(¬_strategies
, ent
->name
, ent
->len
);
200 exclude_cmds(&main_cmds
, ¬_strategies
);
202 if (!is_in_cmdlist(&main_cmds
, name
) && !is_in_cmdlist(&other_cmds
, name
)) {
203 fprintf(stderr
, _("Could not find merge strategy '%s'.\n"), name
);
204 fprintf(stderr
, _("Available strategies are:"));
205 for (i
= 0; i
< main_cmds
.cnt
; i
++)
206 fprintf(stderr
, " %s", main_cmds
.names
[i
]->name
);
207 fprintf(stderr
, ".\n");
208 if (other_cmds
.cnt
) {
209 fprintf(stderr
, _("Available custom strategies are:"));
210 for (i
= 0; i
< other_cmds
.cnt
; i
++)
211 fprintf(stderr
, " %s", other_cmds
.names
[i
]->name
);
212 fprintf(stderr
, ".\n");
217 CALLOC_ARRAY(ret
, 1);
218 ret
->name
= xstrdup(name
);
219 ret
->attr
= NO_TRIVIAL
;
223 static void append_strategy(struct strategy
*s
)
225 ALLOC_GROW(use_strategies
, use_strategies_nr
+ 1, use_strategies_alloc
);
226 use_strategies
[use_strategies_nr
++] = s
;
229 static int option_parse_strategy(const struct option
*opt UNUSED
,
230 const char *name
, int unset
)
235 append_strategy(get_strategy(name
));
239 static struct option builtin_merge_options
[] = {
240 OPT_SET_INT('n', NULL
, &show_diffstat
,
241 N_("do not show a diffstat at the end of the merge"), 0),
242 OPT_BOOL(0, "stat", &show_diffstat
,
243 N_("show a diffstat at the end of the merge")),
244 OPT_BOOL(0, "summary", &show_diffstat
, N_("(synonym to --stat)")),
245 { OPTION_INTEGER
, 0, "log", &shortlog_len
, N_("n"),
246 N_("add (at most <n>) entries from shortlog to merge commit message"),
247 PARSE_OPT_OPTARG
, NULL
, DEFAULT_MERGE_LOG_LEN
},
248 OPT_BOOL(0, "squash", &squash
,
249 N_("create a single commit instead of doing a merge")),
250 OPT_BOOL(0, "commit", &option_commit
,
251 N_("perform a commit if the merge succeeds (default)")),
252 OPT_BOOL('e', "edit", &option_edit
,
253 N_("edit message before committing")),
254 OPT_CLEANUP(&cleanup_arg
),
255 OPT_SET_INT(0, "ff", &fast_forward
, N_("allow fast-forward (default)"), FF_ALLOW
),
256 OPT_SET_INT_F(0, "ff-only", &fast_forward
,
257 N_("abort if fast-forward is not possible"),
258 FF_ONLY
, PARSE_OPT_NONEG
),
259 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
260 OPT_BOOL(0, "verify-signatures", &verify_signatures
,
261 N_("verify that the named commit has a valid GPG signature")),
262 OPT_CALLBACK('s', "strategy", NULL
, N_("strategy"),
263 N_("merge strategy to use"), option_parse_strategy
),
264 OPT_STRVEC('X', "strategy-option", &xopts
, N_("option=value"),
265 N_("option for selected merge strategy")),
266 OPT_CALLBACK('m', "message", &merge_msg
, N_("message"),
267 N_("merge commit message (for a non-fast-forward merge)"),
268 option_parse_message
),
269 { OPTION_LOWLEVEL_CALLBACK
, 'F', "file", &merge_msg
, N_("path"),
270 N_("read message from file"), PARSE_OPT_NONEG
,
271 NULL
, 0, option_read_message
},
272 OPT_STRING(0, "into-name", &into_name
, N_("name"),
273 N_("use <name> instead of the real target")),
274 OPT__VERBOSITY(&verbosity
),
275 OPT_BOOL(0, "abort", &abort_current_merge
,
276 N_("abort the current in-progress merge")),
277 OPT_BOOL(0, "quit", &quit_current_merge
,
278 N_("--abort but leave index and working tree alone")),
279 OPT_BOOL(0, "continue", &continue_current_merge
,
280 N_("continue the current in-progress merge")),
281 OPT_BOOL(0, "allow-unrelated-histories", &allow_unrelated_histories
,
282 N_("allow merging unrelated histories")),
283 OPT_SET_INT(0, "progress", &show_progress
, N_("force progress reporting"), 1),
284 { OPTION_STRING
, 'S', "gpg-sign", &sign_commit
, N_("key-id"),
285 N_("GPG sign commit"), PARSE_OPT_OPTARG
, NULL
, (intptr_t) "" },
286 OPT_AUTOSTASH(&autostash
),
287 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore
, N_("update ignored files (default)")),
288 OPT_BOOL(0, "signoff", &signoff
, N_("add a Signed-off-by trailer")),
289 OPT_BOOL(0, "no-verify", &no_verify
, N_("bypass pre-merge-commit and commit-msg hooks")),
293 static int save_state(struct object_id
*stash
)
296 struct child_process cp
= CHILD_PROCESS_INIT
;
297 struct strbuf buffer
= STRBUF_INIT
;
298 struct lock_file lock_file
= LOCK_INIT
;
302 fd
= repo_hold_locked_index(the_repository
, &lock_file
, 0);
303 refresh_index(&the_index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
305 repo_update_index_if_able(the_repository
, &lock_file
);
306 rollback_lock_file(&lock_file
);
308 strvec_pushl(&cp
.args
, "stash", "create", NULL
);
312 if (start_command(&cp
))
313 die(_("could not run stash."));
314 len
= strbuf_read(&buffer
, cp
.out
, 1024);
317 if (finish_command(&cp
) || len
< 0)
318 die(_("stash failed"));
319 else if (!len
) /* no changes */
321 strbuf_setlen(&buffer
, buffer
.len
-1);
322 if (repo_get_oid(the_repository
, buffer
.buf
, stash
))
323 die(_("not a valid object: %s"), buffer
.buf
);
326 strbuf_release(&buffer
);
330 static void read_empty(const struct object_id
*oid
)
332 struct child_process cmd
= CHILD_PROCESS_INIT
;
334 strvec_pushl(&cmd
.args
, "read-tree", "-m", "-u", empty_tree_oid_hex(),
335 oid_to_hex(oid
), NULL
);
338 if (run_command(&cmd
))
339 die(_("read-tree failed"));
342 static void reset_hard(const struct object_id
*oid
)
344 struct child_process cmd
= CHILD_PROCESS_INIT
;
346 strvec_pushl(&cmd
.args
, "read-tree", "-v", "--reset", "-u",
347 oid_to_hex(oid
), NULL
);
350 if (run_command(&cmd
))
351 die(_("read-tree failed"));
354 static void restore_state(const struct object_id
*head
,
355 const struct object_id
*stash
)
357 struct child_process cmd
= CHILD_PROCESS_INIT
;
361 if (is_null_oid(stash
))
364 strvec_pushl(&cmd
.args
, "stash", "apply", "--index", "--quiet", NULL
);
365 strvec_push(&cmd
.args
, oid_to_hex(stash
));
368 * It is OK to ignore error here, for example when there was
369 * nothing to restore.
375 discard_index(&the_index
);
376 if (repo_read_index(the_repository
) < 0)
377 die(_("could not read index"));
380 /* This is called when no merge was necessary. */
381 static void finish_up_to_date(void)
383 if (verbosity
>= 0) {
385 puts(_("Already up to date. (nothing to squash)"));
387 puts(_("Already up to date."));
389 remove_merge_branch_state(the_repository
);
392 static void squash_message(struct commit
*commit
, struct commit_list
*remoteheads
)
395 struct strbuf out
= STRBUF_INIT
;
396 struct commit_list
*j
;
397 struct pretty_print_context ctx
= {0};
399 printf(_("Squash commit -- not updating HEAD\n"));
401 repo_init_revisions(the_repository
, &rev
, NULL
);
402 diff_merges_suppress(&rev
);
403 rev
.commit_format
= CMIT_FMT_MEDIUM
;
405 commit
->object
.flags
|= UNINTERESTING
;
406 add_pending_object(&rev
, &commit
->object
, NULL
);
408 for (j
= remoteheads
; j
; j
= j
->next
)
409 add_pending_object(&rev
, &j
->item
->object
, NULL
);
411 setup_revisions(0, NULL
, &rev
, NULL
);
412 if (prepare_revision_walk(&rev
))
413 die(_("revision walk setup failed"));
415 ctx
.abbrev
= rev
.abbrev
;
416 ctx
.date_mode
= rev
.date_mode
;
417 ctx
.fmt
= rev
.commit_format
;
419 strbuf_addstr(&out
, "Squashed commit of the following:\n");
420 while ((commit
= get_revision(&rev
)) != NULL
) {
421 strbuf_addch(&out
, '\n');
422 strbuf_addf(&out
, "commit %s\n",
423 oid_to_hex(&commit
->object
.oid
));
424 pretty_print_commit(&ctx
, commit
, &out
);
426 write_file_buf(git_path_squash_msg(the_repository
), out
.buf
, out
.len
);
427 strbuf_release(&out
);
428 release_revisions(&rev
);
431 static void finish(struct commit
*head_commit
,
432 struct commit_list
*remoteheads
,
433 const struct object_id
*new_head
, const char *msg
)
435 struct strbuf reflog_message
= STRBUF_INIT
;
436 const struct object_id
*head
= &head_commit
->object
.oid
;
439 strbuf_addstr(&reflog_message
, getenv("GIT_REFLOG_ACTION"));
443 strbuf_addf(&reflog_message
, "%s: %s",
444 getenv("GIT_REFLOG_ACTION"), msg
);
447 squash_message(head_commit
, remoteheads
);
449 if (verbosity
>= 0 && !merge_msg
.len
)
450 printf(_("No merge message -- not updating HEAD\n"));
452 update_ref(reflog_message
.buf
, "HEAD", new_head
, head
,
453 0, UPDATE_REFS_DIE_ON_ERR
);
455 * We ignore errors in 'gc --auto', since the
456 * user should see them.
458 run_auto_maintenance(verbosity
< 0);
461 if (new_head
&& show_diffstat
) {
462 struct diff_options opts
;
463 repo_diff_setup(the_repository
, &opts
);
464 init_diffstat_widths(&opts
);
465 opts
.output_format
|=
466 DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
467 opts
.detect_rename
= DIFF_DETECT_RENAME
;
468 diff_setup_done(&opts
);
469 diff_tree_oid(head
, new_head
, "", &opts
);
474 /* Run a post-merge hook */
475 run_hooks_l("post-merge", squash
? "1" : "0", NULL
);
478 apply_autostash_ref(the_repository
, "MERGE_AUTOSTASH");
479 strbuf_release(&reflog_message
);
482 /* Get the name for the merge commit's message. */
483 static void merge_name(const char *remote
, struct strbuf
*msg
)
485 struct commit
*remote_head
;
486 struct object_id branch_head
;
487 struct strbuf bname
= STRBUF_INIT
;
488 struct merge_remote_desc
*desc
;
490 char *found_ref
= NULL
;
493 strbuf_branchname(&bname
, remote
, 0);
496 oidclr(&branch_head
);
497 remote_head
= get_merge_parent(remote
);
499 die(_("'%s' does not point to a commit"), remote
);
501 if (repo_dwim_ref(the_repository
, remote
, strlen(remote
), &branch_head
,
502 &found_ref
, 0) > 0) {
503 if (starts_with(found_ref
, "refs/heads/")) {
504 strbuf_addf(msg
, "%s\t\tbranch '%s' of .\n",
505 oid_to_hex(&branch_head
), remote
);
508 if (starts_with(found_ref
, "refs/tags/")) {
509 strbuf_addf(msg
, "%s\t\ttag '%s' of .\n",
510 oid_to_hex(&branch_head
), remote
);
513 if (starts_with(found_ref
, "refs/remotes/")) {
514 strbuf_addf(msg
, "%s\t\tremote-tracking branch '%s' of .\n",
515 oid_to_hex(&branch_head
), remote
);
520 /* See if remote matches <name>^^^.. or <name>~<number> */
521 for (len
= 0, ptr
= remote
+ strlen(remote
);
522 remote
< ptr
&& ptr
[-1] == '^';
529 ptr
= strrchr(remote
, '~');
531 int seen_nonzero
= 0;
534 while (*++ptr
&& isdigit(*ptr
)) {
535 seen_nonzero
|= (*ptr
!= '0');
539 len
= 0; /* not ...~<number> */
540 else if (seen_nonzero
)
543 early
= 1; /* "name~" is "name~1"! */
547 struct strbuf truname
= STRBUF_INIT
;
548 strbuf_addf(&truname
, "refs/heads/%s", remote
);
549 strbuf_setlen(&truname
, truname
.len
- len
);
550 if (ref_exists(truname
.buf
)) {
552 "%s\t\tbranch '%s'%s of .\n",
553 oid_to_hex(&remote_head
->object
.oid
),
555 (early
? " (early part)" : ""));
556 strbuf_release(&truname
);
559 strbuf_release(&truname
);
562 desc
= merge_remote_util(remote_head
);
563 if (desc
&& desc
->obj
&& desc
->obj
->type
== OBJ_TAG
) {
564 strbuf_addf(msg
, "%s\t\t%s '%s'\n",
565 oid_to_hex(&desc
->obj
->oid
),
566 type_name(desc
->obj
->type
),
571 strbuf_addf(msg
, "%s\t\tcommit '%s'\n",
572 oid_to_hex(&remote_head
->object
.oid
), remote
);
575 strbuf_release(&bname
);
578 static void parse_branch_merge_options(char *bmo
)
585 argc
= split_cmdline(bmo
, &argv
);
587 die(_("Bad branch.%s.mergeoptions string: %s"), branch
,
588 _(split_cmdline_strerror(argc
)));
589 REALLOC_ARRAY(argv
, argc
+ 2);
590 MOVE_ARRAY(argv
+ 1, argv
, argc
+ 1);
592 argv
[0] = "branch.*.mergeoptions";
593 parse_options(argc
, argv
, NULL
, builtin_merge_options
,
594 builtin_merge_usage
, 0);
598 static int git_merge_config(const char *k
, const char *v
,
599 const struct config_context
*ctx
, void *cb
)
605 skip_prefix(k
, "branch.", &str
) &&
606 skip_prefix(str
, branch
, &str
) &&
607 !strcmp(str
, ".mergeoptions")) {
608 free(branch_mergeoptions
);
609 branch_mergeoptions
= xstrdup(v
);
613 if (!strcmp(k
, "merge.diffstat") || !strcmp(k
, "merge.stat"))
614 show_diffstat
= git_config_bool(k
, v
);
615 else if (!strcmp(k
, "merge.verifysignatures"))
616 verify_signatures
= git_config_bool(k
, v
);
617 else if (!strcmp(k
, "pull.twohead"))
618 return git_config_string(&pull_twohead
, k
, v
);
619 else if (!strcmp(k
, "pull.octopus"))
620 return git_config_string(&pull_octopus
, k
, v
);
621 else if (!strcmp(k
, "commit.cleanup"))
622 return git_config_string(&cleanup_arg
, k
, v
);
623 else if (!strcmp(k
, "merge.ff")) {
624 int boolval
= git_parse_maybe_bool(v
);
626 fast_forward
= boolval
? FF_ALLOW
: FF_NO
;
627 } else if (v
&& !strcmp(v
, "only")) {
628 fast_forward
= FF_ONLY
;
629 } /* do not barf on values from future versions of git */
631 } else if (!strcmp(k
, "merge.defaulttoupstream")) {
632 default_to_upstream
= git_config_bool(k
, v
);
634 } else if (!strcmp(k
, "commit.gpgsign")) {
635 sign_commit
= git_config_bool(k
, v
) ? "" : NULL
;
637 } else if (!strcmp(k
, "gpg.mintrustlevel")) {
638 check_trust_level
= 0;
639 } else if (!strcmp(k
, "merge.autostash")) {
640 autostash
= git_config_bool(k
, v
);
644 status
= fmt_merge_msg_config(k
, v
, ctx
, cb
);
647 return git_diff_ui_config(k
, v
, ctx
, cb
);
650 static int read_tree_trivial(struct object_id
*common
, struct object_id
*head
,
651 struct object_id
*one
)
654 struct tree
*trees
[MAX_UNPACK_TREES
];
655 struct tree_desc t
[MAX_UNPACK_TREES
];
656 struct unpack_trees_options opts
;
658 memset(&opts
, 0, sizeof(opts
));
660 opts
.src_index
= &the_index
;
661 opts
.dst_index
= &the_index
;
663 opts
.verbose_update
= 1;
664 opts
.trivial_merges_only
= 1;
666 opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
667 trees
[nr_trees
] = parse_tree_indirect(common
);
668 if (!trees
[nr_trees
++])
670 trees
[nr_trees
] = parse_tree_indirect(head
);
671 if (!trees
[nr_trees
++])
673 trees
[nr_trees
] = parse_tree_indirect(one
);
674 if (!trees
[nr_trees
++])
676 opts
.fn
= threeway_merge
;
677 cache_tree_free(&the_index
.cache_tree
);
678 for (i
= 0; i
< nr_trees
; i
++) {
679 parse_tree(trees
[i
]);
680 init_tree_desc(t
+i
, &trees
[i
]->object
.oid
,
681 trees
[i
]->buffer
, trees
[i
]->size
);
683 if (unpack_trees(nr_trees
, t
, &opts
))
688 static void write_tree_trivial(struct object_id
*oid
)
690 if (write_index_as_tree(oid
, &the_index
, get_index_file(), 0, NULL
))
691 die(_("git write-tree failed to write a tree"));
694 static int try_merge_strategy(const char *strategy
, struct commit_list
*common
,
695 struct commit_list
*remoteheads
,
698 const char *head_arg
= "HEAD";
700 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
,
701 SKIP_IF_UNCHANGED
, 0, NULL
, NULL
,
703 return error(_("Unable to write index."));
705 if (!strcmp(strategy
, "recursive") || !strcmp(strategy
, "subtree") ||
706 !strcmp(strategy
, "ort")) {
707 struct lock_file lock
= LOCK_INIT
;
709 struct commit
*result
;
710 struct commit_list
*reversed
= NULL
;
711 struct merge_options o
;
712 struct commit_list
*j
;
714 if (remoteheads
->next
) {
715 error(_("Not handling anything other than two heads merge."));
719 init_merge_options(&o
, the_repository
);
720 if (!strcmp(strategy
, "subtree"))
721 o
.subtree_shift
= "";
723 o
.show_rename_progress
=
724 show_progress
== -1 ? isatty(2) : show_progress
;
726 for (x
= 0; x
< xopts
.nr
; x
++)
727 if (parse_merge_opt(&o
, xopts
.v
[x
]))
728 die(_("unknown strategy option: -X%s"), xopts
.v
[x
]);
730 o
.branch1
= head_arg
;
731 o
.branch2
= merge_remote_util(remoteheads
->item
)->name
;
733 for (j
= common
; j
; j
= j
->next
)
734 commit_list_insert(j
->item
, &reversed
);
736 repo_hold_locked_index(the_repository
, &lock
,
738 if (!strcmp(strategy
, "ort"))
739 clean
= merge_ort_recursive(&o
, head
, remoteheads
->item
,
742 clean
= merge_recursive(&o
, head
, remoteheads
->item
,
745 rollback_lock_file(&lock
);
748 if (write_locked_index(&the_index
, &lock
,
749 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
750 die(_("unable to write %s"), get_index_file());
751 return clean
? 0 : 1;
753 return try_merge_command(the_repository
,
754 strategy
, xopts
.nr
, xopts
.v
,
755 common
, head_arg
, remoteheads
);
759 static void count_diff_files(struct diff_queue_struct
*q
,
760 struct diff_options
*opt UNUSED
, void *data
)
767 static int count_unmerged_entries(void)
771 for (i
= 0; i
< the_index
.cache_nr
; i
++)
772 if (ce_stage(the_index
.cache
[i
]))
778 static void add_strategies(const char *string
, unsigned attr
)
783 struct string_list list
= STRING_LIST_INIT_DUP
;
784 struct string_list_item
*item
;
785 string_list_split(&list
, string
, ' ', -1);
786 for_each_string_list_item(item
, &list
)
787 append_strategy(get_strategy(item
->string
));
788 string_list_clear(&list
, 0);
791 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
792 if (all_strategy
[i
].attr
& attr
)
793 append_strategy(&all_strategy
[i
]);
797 static void read_merge_msg(struct strbuf
*msg
)
799 const char *filename
= git_path_merge_msg(the_repository
);
801 if (strbuf_read_file(msg
, filename
, 0) < 0)
802 die_errno(_("Could not read from '%s'"), filename
);
805 static void write_merge_state(struct commit_list
*);
806 static void abort_commit(struct commit_list
*remoteheads
, const char *err_msg
)
809 error("%s", err_msg
);
811 _("Not committing merge; use 'git commit' to complete the merge.\n"));
812 write_merge_state(remoteheads
);
816 static const char merge_editor_comment
[] =
817 N_("Please enter a commit message to explain why this merge is necessary,\n"
818 "especially if it merges an updated upstream into a topic branch.\n"
821 static const char scissors_editor_comment
[] =
822 N_("An empty message aborts the commit.\n");
824 static const char no_scissors_editor_comment
[] =
825 N_("Lines starting with '%s' will be ignored, and an empty message aborts\n"
828 static void write_merge_heads(struct commit_list
*);
829 static void prepare_to_commit(struct commit_list
*remoteheads
)
831 struct strbuf msg
= STRBUF_INIT
;
832 const char *index_file
= get_index_file();
837 if (run_commit_hook(0 < option_edit
, index_file
, &invoked_hook
,
838 "pre-merge-commit", NULL
))
839 abort_commit(remoteheads
, NULL
);
841 * Re-read the index as pre-merge-commit hook could have updated it,
842 * and write it out as a tree. We must do this before we invoke
843 * the editor and after we invoke run_status above.
846 discard_index(&the_index
);
848 read_index_from(&the_index
, index_file
, get_git_dir());
849 strbuf_addbuf(&msg
, &merge_msg
);
851 BUG("the control must not reach here under --squash");
852 if (0 < option_edit
) {
853 strbuf_addch(&msg
, '\n');
854 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
855 wt_status_append_cut_line(&msg
);
856 strbuf_commented_addf(&msg
, comment_line_str
, "\n");
858 strbuf_commented_addf(&msg
, comment_line_str
,
859 _(merge_editor_comment
));
860 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
)
861 strbuf_commented_addf(&msg
, comment_line_str
,
862 _(scissors_editor_comment
));
864 strbuf_commented_addf(&msg
, comment_line_str
,
865 _(no_scissors_editor_comment
), comment_line_str
);
868 append_signoff(&msg
, ignored_log_message_bytes(msg
.buf
, msg
.len
), 0);
869 write_merge_heads(remoteheads
);
870 write_file_buf(git_path_merge_msg(the_repository
), msg
.buf
, msg
.len
);
871 if (run_commit_hook(0 < option_edit
, get_index_file(), NULL
,
872 "prepare-commit-msg",
873 git_path_merge_msg(the_repository
), "merge", NULL
))
874 abort_commit(remoteheads
, NULL
);
875 if (0 < option_edit
) {
876 if (launch_editor(git_path_merge_msg(the_repository
), NULL
, NULL
))
877 abort_commit(remoteheads
, NULL
);
880 if (!no_verify
&& run_commit_hook(0 < option_edit
, get_index_file(),
882 git_path_merge_msg(the_repository
), NULL
))
883 abort_commit(remoteheads
, NULL
);
885 read_merge_msg(&msg
);
886 cleanup_message(&msg
, cleanup_mode
, 0);
888 abort_commit(remoteheads
, _("Empty commit message."));
889 strbuf_release(&merge_msg
);
890 strbuf_addbuf(&merge_msg
, &msg
);
891 strbuf_release(&msg
);
894 static int merge_trivial(struct commit
*head
, struct commit_list
*remoteheads
)
896 struct object_id result_tree
, result_commit
;
897 struct commit_list
*parents
, **pptr
= &parents
;
899 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
,
900 SKIP_IF_UNCHANGED
, 0, NULL
, NULL
,
902 return error(_("Unable to write index."));
904 write_tree_trivial(&result_tree
);
905 printf(_("Wonderful.\n"));
906 pptr
= commit_list_append(head
, pptr
);
907 pptr
= commit_list_append(remoteheads
->item
, pptr
);
908 prepare_to_commit(remoteheads
);
909 if (commit_tree(merge_msg
.buf
, merge_msg
.len
, &result_tree
, parents
,
910 &result_commit
, NULL
, sign_commit
))
911 die(_("failed to write commit object"));
912 finish(head
, remoteheads
, &result_commit
, "In-index merge");
913 remove_merge_branch_state(the_repository
);
917 static int finish_automerge(struct commit
*head
,
919 struct commit_list
*common
,
920 struct commit_list
*remoteheads
,
921 struct object_id
*result_tree
,
922 const char *wt_strategy
)
924 struct commit_list
*parents
= NULL
;
925 struct strbuf buf
= STRBUF_INIT
;
926 struct object_id result_commit
;
928 write_tree_trivial(result_tree
);
929 free_commit_list(common
);
930 parents
= remoteheads
;
931 if (!head_subsumed
|| fast_forward
== FF_NO
)
932 commit_list_insert(head
, &parents
);
933 prepare_to_commit(remoteheads
);
934 if (commit_tree(merge_msg
.buf
, merge_msg
.len
, result_tree
, parents
,
935 &result_commit
, NULL
, sign_commit
))
936 die(_("failed to write commit object"));
937 strbuf_addf(&buf
, "Merge made by the '%s' strategy.", wt_strategy
);
938 finish(head
, remoteheads
, &result_commit
, buf
.buf
);
939 strbuf_release(&buf
);
940 remove_merge_branch_state(the_repository
);
944 static int suggest_conflicts(void)
946 const char *filename
;
948 struct strbuf msgbuf
= STRBUF_INIT
;
950 filename
= git_path_merge_msg(the_repository
);
951 fp
= xfopen(filename
, "a");
954 * We can't use cleanup_mode because if we're not using the editor,
955 * get_cleanup_mode will return COMMIT_MSG_CLEANUP_SPACE instead, even
956 * though the message is meant to be processed later by git-commit.
957 * Thus, we will get the cleanup mode which is returned when we _are_
960 append_conflicts_hint(&the_index
, &msgbuf
,
961 get_cleanup_mode(cleanup_arg
, 1));
962 fputs(msgbuf
.buf
, fp
);
963 strbuf_release(&msgbuf
);
965 repo_rerere(the_repository
, allow_rerere_auto
);
966 printf(_("Automatic merge failed; "
967 "fix conflicts and then commit the result.\n"));
971 static int evaluate_result(void)
976 /* Check how many files differ. */
977 repo_init_revisions(the_repository
, &rev
, "");
978 setup_revisions(0, NULL
, &rev
, NULL
);
979 rev
.diffopt
.output_format
|=
980 DIFF_FORMAT_CALLBACK
;
981 rev
.diffopt
.format_callback
= count_diff_files
;
982 rev
.diffopt
.format_callback_data
= &cnt
;
983 run_diff_files(&rev
, 0);
986 * Check how many unmerged entries are
989 cnt
+= count_unmerged_entries();
991 release_revisions(&rev
);
996 * Pretend as if the user told us to merge with the remote-tracking
997 * branch we have for the upstream of the current branch
999 static int setup_with_upstream(const char ***argv
)
1001 struct branch
*branch
= branch_get(NULL
);
1006 die(_("No current branch."));
1007 if (!branch
->remote_name
)
1008 die(_("No remote for the current branch."));
1009 if (!branch
->merge_nr
)
1010 die(_("No default upstream defined for the current branch."));
1012 args
= xcalloc(st_add(branch
->merge_nr
, 1), sizeof(char *));
1013 for (i
= 0; i
< branch
->merge_nr
; i
++) {
1014 if (!branch
->merge
[i
]->dst
)
1015 die(_("No remote-tracking branch for %s from %s"),
1016 branch
->merge
[i
]->src
, branch
->remote_name
);
1017 args
[i
] = branch
->merge
[i
]->dst
;
1024 static void write_merge_heads(struct commit_list
*remoteheads
)
1026 struct commit_list
*j
;
1027 struct strbuf buf
= STRBUF_INIT
;
1029 for (j
= remoteheads
; j
; j
= j
->next
) {
1030 struct object_id
*oid
;
1031 struct commit
*c
= j
->item
;
1032 struct merge_remote_desc
*desc
;
1034 desc
= merge_remote_util(c
);
1035 if (desc
&& desc
->obj
) {
1036 oid
= &desc
->obj
->oid
;
1038 oid
= &c
->object
.oid
;
1040 strbuf_addf(&buf
, "%s\n", oid_to_hex(oid
));
1042 write_file_buf(git_path_merge_head(the_repository
), buf
.buf
, buf
.len
);
1045 if (fast_forward
== FF_NO
)
1046 strbuf_addstr(&buf
, "no-ff");
1047 write_file_buf(git_path_merge_mode(the_repository
), buf
.buf
, buf
.len
);
1048 strbuf_release(&buf
);
1051 static void write_merge_state(struct commit_list
*remoteheads
)
1053 write_merge_heads(remoteheads
);
1054 strbuf_addch(&merge_msg
, '\n');
1055 write_file_buf(git_path_merge_msg(the_repository
), merge_msg
.buf
,
1059 static int default_edit_option(void)
1061 static const char name
[] = "GIT_MERGE_AUTOEDIT";
1062 const char *e
= getenv(name
);
1063 struct stat st_stdin
, st_stdout
;
1066 /* an explicit -m msg without --[no-]edit */
1070 int v
= git_parse_maybe_bool(e
);
1072 die(_("Bad value '%s' in environment '%s'"), e
, name
);
1076 /* Use editor if stdin and stdout are the same and is a tty */
1077 return (!fstat(0, &st_stdin
) &&
1078 !fstat(1, &st_stdout
) &&
1079 isatty(0) && isatty(1) &&
1080 st_stdin
.st_dev
== st_stdout
.st_dev
&&
1081 st_stdin
.st_ino
== st_stdout
.st_ino
&&
1082 st_stdin
.st_mode
== st_stdout
.st_mode
);
1085 static struct commit_list
*reduce_parents(struct commit
*head_commit
,
1087 struct commit_list
*remoteheads
)
1089 struct commit_list
*parents
, **remotes
;
1092 * Is the current HEAD reachable from another commit being
1093 * merged? If so we do not want to record it as a parent of
1094 * the resulting merge, unless --no-ff is given. We will flip
1095 * this variable to 0 when we find HEAD among the independent
1096 * tips being merged.
1100 /* Find what parents to record by checking independent ones. */
1101 parents
= reduce_heads(remoteheads
);
1102 free_commit_list(remoteheads
);
1105 remotes
= &remoteheads
;
1107 struct commit
*commit
= pop_commit(&parents
);
1108 if (commit
== head_commit
)
1111 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1116 static void prepare_merge_message(struct strbuf
*merge_names
, struct strbuf
*merge_msg
)
1118 struct fmt_merge_msg_opts opts
;
1120 memset(&opts
, 0, sizeof(opts
));
1121 opts
.add_title
= !have_message
;
1122 opts
.shortlog_len
= shortlog_len
;
1123 opts
.credit_people
= (0 < option_edit
);
1124 opts
.into_name
= into_name
;
1126 fmt_merge_msg(merge_names
, merge_msg
, &opts
);
1128 strbuf_setlen(merge_msg
, merge_msg
->len
- 1);
1131 static void handle_fetch_head(struct commit_list
**remotes
, struct strbuf
*merge_names
)
1133 const char *filename
;
1135 struct strbuf fetch_head_file
= STRBUF_INIT
;
1136 const unsigned hexsz
= the_hash_algo
->hexsz
;
1139 merge_names
= &fetch_head_file
;
1141 filename
= git_path_fetch_head(the_repository
);
1142 fd
= xopen(filename
, O_RDONLY
);
1144 if (strbuf_read(merge_names
, fd
, 0) < 0)
1145 die_errno(_("could not read '%s'"), filename
);
1147 die_errno(_("could not close '%s'"), filename
);
1149 for (pos
= 0; pos
< merge_names
->len
; pos
= npos
) {
1150 struct object_id oid
;
1152 struct commit
*commit
;
1154 ptr
= strchr(merge_names
->buf
+ pos
, '\n');
1156 npos
= ptr
- merge_names
->buf
+ 1;
1158 npos
= merge_names
->len
;
1160 if (npos
- pos
< hexsz
+ 2 ||
1161 get_oid_hex(merge_names
->buf
+ pos
, &oid
))
1162 commit
= NULL
; /* bad */
1163 else if (memcmp(merge_names
->buf
+ pos
+ hexsz
, "\t\t", 2))
1164 continue; /* not-for-merge */
1166 char saved
= merge_names
->buf
[pos
+ hexsz
];
1167 merge_names
->buf
[pos
+ hexsz
] = '\0';
1168 commit
= get_merge_parent(merge_names
->buf
+ pos
);
1169 merge_names
->buf
[pos
+ hexsz
] = saved
;
1174 die(_("not something we can merge in %s: %s"),
1175 filename
, merge_names
->buf
+ pos
);
1177 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1180 if (merge_names
== &fetch_head_file
)
1181 strbuf_release(&fetch_head_file
);
1184 static struct commit_list
*collect_parents(struct commit
*head_commit
,
1186 int argc
, const char **argv
,
1187 struct strbuf
*merge_msg
)
1190 struct commit_list
*remoteheads
= NULL
;
1191 struct commit_list
**remotes
= &remoteheads
;
1192 struct strbuf merge_names
= STRBUF_INIT
, *autogen
= NULL
;
1194 if (merge_msg
&& (!have_message
|| shortlog_len
))
1195 autogen
= &merge_names
;
1198 remotes
= &commit_list_insert(head_commit
, remotes
)->next
;
1200 if (argc
== 1 && !strcmp(argv
[0], "FETCH_HEAD")) {
1201 handle_fetch_head(remotes
, autogen
);
1202 remoteheads
= reduce_parents(head_commit
, head_subsumed
, remoteheads
);
1204 for (i
= 0; i
< argc
; i
++) {
1205 struct commit
*commit
= get_merge_parent(argv
[i
]);
1207 help_unknown_ref(argv
[i
], "merge",
1208 _("not something we can merge"));
1209 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1211 remoteheads
= reduce_parents(head_commit
, head_subsumed
, remoteheads
);
1213 struct commit_list
*p
;
1214 for (p
= remoteheads
; p
; p
= p
->next
)
1215 merge_name(merge_remote_util(p
->item
)->name
, autogen
);
1220 prepare_merge_message(autogen
, merge_msg
);
1221 strbuf_release(autogen
);
1227 static int merging_a_throwaway_tag(struct commit
*commit
)
1230 struct object_id oid
;
1231 int is_throwaway_tag
= 0;
1233 /* Are we merging a tag? */
1234 if (!merge_remote_util(commit
) ||
1235 !merge_remote_util(commit
)->obj
||
1236 merge_remote_util(commit
)->obj
->type
!= OBJ_TAG
)
1237 return is_throwaway_tag
;
1240 * Now we know we are merging a tag object. Are we downstream
1241 * and following the tags from upstream? If so, we must have
1242 * the tag object pointed at by "refs/tags/$T" where $T is the
1243 * tagname recorded in the tag object. We want to allow such
1244 * a "just to catch up" merge to fast-forward.
1246 * Otherwise, we are playing an integrator's role, making a
1247 * merge with a throw-away tag from a contributor with
1248 * something like "git pull $contributor $signed_tag".
1249 * We want to forbid such a merge from fast-forwarding
1250 * by default; otherwise we would not keep the signature
1253 tag_ref
= xstrfmt("refs/tags/%s",
1254 ((struct tag
*)merge_remote_util(commit
)->obj
)->tag
);
1255 if (!read_ref(tag_ref
, &oid
) &&
1256 oideq(&oid
, &merge_remote_util(commit
)->obj
->oid
))
1257 is_throwaway_tag
= 0;
1259 is_throwaway_tag
= 1;
1261 return is_throwaway_tag
;
1264 int cmd_merge(int argc
, const char **argv
, const char *prefix
)
1266 struct object_id result_tree
, stash
, head_oid
;
1267 struct commit
*head_commit
;
1268 struct strbuf buf
= STRBUF_INIT
;
1269 int i
, ret
= 0, head_subsumed
;
1270 int best_cnt
= -1, merge_was_ok
= 0, automerge_was_ok
= 0;
1271 struct commit_list
*common
= NULL
;
1272 const char *best_strategy
= NULL
, *wt_strategy
= NULL
;
1273 struct commit_list
*remoteheads
= NULL
, *p
;
1274 void *branch_to_free
;
1275 int orig_argc
= argc
;
1277 if (argc
== 2 && !strcmp(argv
[1], "-h"))
1278 usage_with_options(builtin_merge_usage
, builtin_merge_options
);
1280 prepare_repo_settings(the_repository
);
1281 the_repository
->settings
.command_requires_full_index
= 0;
1284 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1287 branch
= branch_to_free
= resolve_refdup("HEAD", 0, &head_oid
, NULL
);
1289 skip_prefix(branch
, "refs/heads/", &branch
);
1291 if (!pull_twohead
) {
1292 char *default_strategy
= getenv("GIT_TEST_MERGE_ALGORITHM");
1293 if (default_strategy
&& !strcmp(default_strategy
, "ort"))
1294 pull_twohead
= "ort";
1297 init_diff_ui_defaults();
1298 git_config(git_merge_config
, NULL
);
1300 if (!branch
|| is_null_oid(&head_oid
))
1303 head_commit
= lookup_commit_or_die(&head_oid
, "HEAD");
1305 if (branch_mergeoptions
)
1306 parse_branch_merge_options(branch_mergeoptions
);
1307 argc
= parse_options(argc
, argv
, prefix
, builtin_merge_options
,
1308 builtin_merge_usage
, 0);
1309 if (shortlog_len
< 0)
1310 shortlog_len
= (merge_log_config
> 0) ? merge_log_config
: 0;
1312 if (verbosity
< 0 && show_progress
== -1)
1315 if (abort_current_merge
) {
1317 const char *nargv
[] = {"reset", "--merge", NULL
};
1318 char stash_oid_hex
[GIT_MAX_HEXSZ
+ 1];
1319 struct object_id stash_oid
= {0};
1322 usage_msg_opt(_("--abort expects no arguments"),
1323 builtin_merge_usage
, builtin_merge_options
);
1325 if (!file_exists(git_path_merge_head(the_repository
)))
1326 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1328 if (!read_ref("MERGE_AUTOSTASH", &stash_oid
))
1329 delete_ref("", "MERGE_AUTOSTASH", &stash_oid
, REF_NO_DEREF
);
1331 /* Invoke 'git reset --merge' */
1332 ret
= cmd_reset(nargc
, nargv
, prefix
);
1334 if (!is_null_oid(&stash_oid
)) {
1335 oid_to_hex_r(stash_oid_hex
, &stash_oid
);
1336 apply_autostash_oid(stash_oid_hex
);
1342 if (quit_current_merge
) {
1344 usage_msg_opt(_("--quit expects no arguments"),
1345 builtin_merge_usage
,
1346 builtin_merge_options
);
1348 remove_merge_branch_state(the_repository
);
1352 if (continue_current_merge
) {
1354 const char *nargv
[] = {"commit", NULL
};
1357 usage_msg_opt(_("--continue expects no arguments"),
1358 builtin_merge_usage
, builtin_merge_options
);
1360 if (!file_exists(git_path_merge_head(the_repository
)))
1361 die(_("There is no merge in progress (MERGE_HEAD missing)."));
1363 /* Invoke 'git commit' */
1364 ret
= cmd_commit(nargc
, nargv
, prefix
);
1368 if (repo_read_index_unmerged(the_repository
))
1369 die_resolve_conflict("merge");
1371 if (file_exists(git_path_merge_head(the_repository
))) {
1373 * There is no unmerged entry, don't advise 'git
1374 * add/rm <file>', just 'git commit'.
1376 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
))
1377 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1378 "Please, commit your changes before you merge."));
1380 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1382 if (ref_exists("CHERRY_PICK_HEAD")) {
1383 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
))
1384 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1385 "Please, commit your changes before you merge."));
1387 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1389 resolve_undo_clear_index(&the_index
);
1391 if (option_edit
< 0)
1392 option_edit
= default_edit_option();
1394 cleanup_mode
= get_cleanup_mode(cleanup_arg
, 0 < option_edit
);
1400 if (fast_forward
== FF_NO
)
1401 die(_("options '%s' and '%s' cannot be used together"), "--squash", "--no-ff.");
1402 if (option_commit
> 0)
1403 die(_("options '%s' and '%s' cannot be used together"), "--squash", "--commit.");
1405 * squash can now silently disable option_commit - this is not
1406 * a problem as it is only overriding the default, not a user
1412 if (option_commit
< 0)
1416 if (default_to_upstream
)
1417 argc
= setup_with_upstream(&argv
);
1419 die(_("No commit specified and merge.defaultToUpstream not set."));
1420 } else if (argc
== 1 && !strcmp(argv
[0], "-")) {
1425 usage_with_options(builtin_merge_usage
,
1426 builtin_merge_options
);
1430 * If the merged head is a valid one there is no reason
1431 * to forbid "git merge" into a branch yet to be born.
1432 * We do the same for "git pull".
1434 struct object_id
*remote_head_oid
;
1436 die(_("Squash commit into empty head not supported yet"));
1437 if (fast_forward
== FF_NO
)
1438 die(_("Non-fast-forward commit does not make sense into "
1440 remoteheads
= collect_parents(head_commit
, &head_subsumed
,
1443 die(_("%s - not something we can merge"), argv
[0]);
1444 if (remoteheads
->next
)
1445 die(_("Can merge only exactly one commit into empty head"));
1447 if (verify_signatures
)
1448 verify_merge_signature(remoteheads
->item
, verbosity
,
1451 remote_head_oid
= &remoteheads
->item
->object
.oid
;
1452 read_empty(remote_head_oid
);
1453 update_ref("initial pull", "HEAD", remote_head_oid
, NULL
, 0,
1454 UPDATE_REFS_DIE_ON_ERR
);
1459 * All the rest are the commits being merged; prepare
1460 * the standard merge summary message to be appended
1461 * to the given message.
1463 remoteheads
= collect_parents(head_commit
, &head_subsumed
,
1464 argc
, argv
, &merge_msg
);
1466 if (!head_commit
|| !argc
)
1467 usage_with_options(builtin_merge_usage
,
1468 builtin_merge_options
);
1470 if (verify_signatures
) {
1471 for (p
= remoteheads
; p
; p
= p
->next
) {
1472 verify_merge_signature(p
->item
, verbosity
,
1477 strbuf_addstr(&buf
, "merge");
1478 for (p
= remoteheads
; p
; p
= p
->next
)
1479 strbuf_addf(&buf
, " %s", merge_remote_util(p
->item
)->name
);
1480 setenv("GIT_REFLOG_ACTION", buf
.buf
, 0);
1483 for (p
= remoteheads
; p
; p
= p
->next
) {
1484 struct commit
*commit
= p
->item
;
1485 strbuf_addf(&buf
, "GITHEAD_%s",
1486 oid_to_hex(&commit
->object
.oid
));
1487 setenv(buf
.buf
, merge_remote_util(commit
)->name
, 1);
1489 if (fast_forward
!= FF_ONLY
&& merging_a_throwaway_tag(commit
))
1490 fast_forward
= FF_NO
;
1493 if (!use_strategies
&& !pull_twohead
&&
1494 remoteheads
&& !remoteheads
->next
) {
1495 char *default_strategy
= getenv("GIT_TEST_MERGE_ALGORITHM");
1496 if (default_strategy
)
1497 append_strategy(get_strategy(default_strategy
));
1499 if (!use_strategies
) {
1501 ; /* already up-to-date */
1502 else if (!remoteheads
->next
)
1503 add_strategies(pull_twohead
, DEFAULT_TWOHEAD
);
1505 add_strategies(pull_octopus
, DEFAULT_OCTOPUS
);
1508 for (i
= 0; i
< use_strategies_nr
; i
++) {
1509 if (use_strategies
[i
]->attr
& NO_FAST_FORWARD
)
1510 fast_forward
= FF_NO
;
1511 if (use_strategies
[i
]->attr
& NO_TRIVIAL
)
1516 ; /* already up-to-date */
1517 else if (!remoteheads
->next
) {
1518 if (repo_get_merge_bases(the_repository
, head_commit
,
1519 remoteheads
->item
, &common
) < 0) {
1524 struct commit_list
*list
= remoteheads
;
1525 commit_list_insert(head_commit
, &list
);
1526 if (get_octopus_merge_bases(list
, &common
) < 0) {
1534 update_ref("updating ORIG_HEAD", "ORIG_HEAD",
1535 &head_commit
->object
.oid
, NULL
, 0, UPDATE_REFS_DIE_ON_ERR
);
1537 if (remoteheads
&& !common
) {
1538 /* No common ancestors found. */
1539 if (!allow_unrelated_histories
)
1540 die(_("refusing to merge unrelated histories"));
1541 /* otherwise, we need a real merge. */
1542 } else if (!remoteheads
||
1543 (!remoteheads
->next
&& !common
->next
&&
1544 common
->item
== remoteheads
->item
)) {
1546 * If head can reach all the merge then we are up to date.
1547 * but first the most common case of merging one remote.
1549 finish_up_to_date();
1551 } else if (fast_forward
!= FF_NO
&& !remoteheads
->next
&&
1553 oideq(&common
->item
->object
.oid
, &head_commit
->object
.oid
)) {
1554 /* Again the most common case of merging one remote. */
1555 const char *msg
= have_message
?
1556 "Fast-forward (no commit created; -m option ignored)" :
1558 struct commit
*commit
;
1560 if (verbosity
>= 0) {
1561 printf(_("Updating %s..%s\n"),
1562 repo_find_unique_abbrev(the_repository
, &head_commit
->object
.oid
,
1564 repo_find_unique_abbrev(the_repository
, &remoteheads
->item
->object
.oid
,
1567 commit
= remoteheads
->item
;
1574 create_autostash_ref(the_repository
, "MERGE_AUTOSTASH");
1575 if (checkout_fast_forward(the_repository
,
1576 &head_commit
->object
.oid
,
1577 &commit
->object
.oid
,
1578 overwrite_ignore
)) {
1579 apply_autostash_ref(the_repository
, "MERGE_AUTOSTASH");
1584 finish(head_commit
, remoteheads
, &commit
->object
.oid
, msg
);
1585 remove_merge_branch_state(the_repository
);
1587 } else if (!remoteheads
->next
&& common
->next
)
1590 * We are not doing octopus and not fast-forward. Need
1593 else if (!remoteheads
->next
&& !common
->next
&& option_commit
) {
1595 * We are not doing octopus, not fast-forward, and have
1598 refresh_index(&the_index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
1599 if (allow_trivial
&& fast_forward
!= FF_ONLY
) {
1601 * Must first ensure that index matches HEAD before
1602 * attempting a trivial merge.
1604 struct tree
*head_tree
= repo_get_commit_tree(the_repository
,
1606 struct strbuf sb
= STRBUF_INIT
;
1608 if (repo_index_has_changes(the_repository
, head_tree
,
1610 error(_("Your local changes to the following files would be overwritten by merge:\n %s"),
1612 strbuf_release(&sb
);
1617 /* See if it is really trivial. */
1618 git_committer_info(IDENT_STRICT
);
1619 printf(_("Trying really trivial in-index merge...\n"));
1620 if (!read_tree_trivial(&common
->item
->object
.oid
,
1621 &head_commit
->object
.oid
,
1622 &remoteheads
->item
->object
.oid
)) {
1623 ret
= merge_trivial(head_commit
, remoteheads
);
1626 printf(_("Nope.\n"));
1630 * An octopus. If we can reach all the remote we are up
1634 struct commit_list
*j
;
1636 for (j
= remoteheads
; j
; j
= j
->next
) {
1637 struct commit_list
*common_one
= NULL
;
1638 struct commit
*common_item
;
1641 * Here we *have* to calculate the individual
1642 * merge_bases again, otherwise "git merge HEAD^
1643 * HEAD^^" would be missed.
1645 if (repo_get_merge_bases(the_repository
, head_commit
,
1646 j
->item
, &common_one
) < 0)
1649 common_item
= common_one
->item
;
1650 free_commit_list(common_one
);
1651 if (!oideq(&common_item
->object
.oid
, &j
->item
->object
.oid
)) {
1657 finish_up_to_date();
1662 if (fast_forward
== FF_ONLY
)
1663 die_ff_impossible();
1666 create_autostash_ref(the_repository
, "MERGE_AUTOSTASH");
1668 /* We are going to make a new commit. */
1669 git_committer_info(IDENT_STRICT
);
1672 * At this point, we need a real merge. No matter what strategy
1673 * we use, it would operate on the index, possibly affecting the
1674 * working tree, and when resolved cleanly, have the desired
1675 * tree in the index -- this means that the index must be in
1676 * sync with the head commit. The strategies are responsible
1679 * Stash away the local changes so that we can try more than one
1680 * and/or recover from merge strategies bailing while leaving the
1681 * index and working tree polluted.
1683 if (save_state(&stash
))
1686 for (i
= 0; i
< use_strategies_nr
; i
++) {
1689 printf(_("Rewinding the tree to pristine...\n"));
1690 restore_state(&head_commit
->object
.oid
, &stash
);
1692 if (use_strategies_nr
!= 1)
1693 printf(_("Trying merge strategy %s...\n"),
1694 use_strategies
[i
]->name
);
1696 * Remember which strategy left the state in the working
1699 wt_strategy
= use_strategies
[i
]->name
;
1701 ret
= try_merge_strategy(wt_strategy
,
1702 common
, remoteheads
,
1705 * The backend exits with 1 when conflicts are
1706 * left to be resolved, with 2 when it does not
1707 * handle the given merge at all.
1712 * This strategy worked; no point in trying
1716 best_strategy
= wt_strategy
;
1719 cnt
= (use_strategies_nr
> 1) ? evaluate_result() : 0;
1720 if (best_cnt
<= 0 || cnt
<= best_cnt
) {
1721 best_strategy
= wt_strategy
;
1728 * If we have a resulting tree, that means the strategy module
1729 * auto resolved the merge cleanly.
1731 if (merge_was_ok
&& option_commit
) {
1732 automerge_was_ok
= 1;
1733 ret
= finish_automerge(head_commit
, head_subsumed
,
1734 common
, remoteheads
,
1735 &result_tree
, wt_strategy
);
1740 * Pick the result from the best strategy and have the user fix
1743 if (!best_strategy
) {
1744 restore_state(&head_commit
->object
.oid
, &stash
);
1745 if (use_strategies_nr
> 1)
1747 _("No merge strategy handled the merge.\n"));
1749 fprintf(stderr
, _("Merge with strategy %s failed.\n"),
1750 use_strategies
[0]->name
);
1751 apply_autostash_ref(the_repository
, "MERGE_AUTOSTASH");
1754 } else if (best_strategy
== wt_strategy
)
1755 ; /* We already have its result in the working tree. */
1757 printf(_("Rewinding the tree to pristine...\n"));
1758 restore_state(&head_commit
->object
.oid
, &stash
);
1759 printf(_("Using the %s strategy to prepare resolving by hand.\n"),
1761 try_merge_strategy(best_strategy
, common
, remoteheads
,
1766 finish(head_commit
, remoteheads
, NULL
, NULL
);
1768 git_test_write_commit_graph_or_die();
1770 write_merge_state(remoteheads
);
1773 fprintf(stderr
, _("Automatic merge went well; "
1774 "stopped before committing as requested\n"));
1776 ret
= suggest_conflicts();
1778 printf(_("When finished, apply stashed changes with `git stash pop`\n"));
1781 if (!automerge_was_ok
) {
1782 free_commit_list(common
);
1783 free_commit_list(remoteheads
);
1785 strbuf_release(&buf
);
1786 free(branch_to_free
);
1787 discard_index(&the_index
);