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"
40 #include "merge-recursive.h"
41 #include "merge-ort-wrappers.h"
42 #include "resolve-undo.h"
44 #include "fmt-merge-msg.h"
45 #include "gpg-interface.h"
46 #include "sequencer.h"
47 #include "string-list.h"
52 #include "commit-reach.h"
53 #include "wt-status.h"
54 #include "commit-graph.h"
56 #define DEFAULT_TWOHEAD (1<<0)
57 #define DEFAULT_OCTOPUS (1<<1)
58 #define NO_FAST_FORWARD (1<<2)
59 #define NO_TRIVIAL (1<<3)
66 static const char * const builtin_merge_usage
[] = {
67 N_("git merge [<options>] [<commit>...]"),
69 "git merge --continue",
73 static int show_diffstat
= 1, shortlog_len
= -1, squash
;
74 static int option_commit
= -1;
75 static int option_edit
= -1;
76 static int allow_trivial
= 1, have_message
, verify_signatures
;
77 static int check_trust_level
= 1;
78 static int overwrite_ignore
= 1;
79 static struct strbuf merge_msg
= STRBUF_INIT
;
80 static struct strategy
**use_strategies
;
81 static size_t use_strategies_nr
, use_strategies_alloc
;
82 static struct strvec xopts
= STRVEC_INIT
;
83 static const char *branch
;
84 static char *branch_mergeoptions
;
86 static int allow_rerere_auto
;
87 static int abort_current_merge
;
88 static int quit_current_merge
;
89 static int continue_current_merge
;
90 static int allow_unrelated_histories
;
91 static int show_progress
= -1;
92 static int default_to_upstream
= 1;
94 static const char *sign_commit
;
97 static char *into_name
;
99 static struct strategy all_strategy
[] = {
100 { "recursive", NO_TRIVIAL
},
101 { "octopus", DEFAULT_OCTOPUS
},
102 { "ort", DEFAULT_TWOHEAD
| NO_TRIVIAL
},
104 { "ours", NO_FAST_FORWARD
| NO_TRIVIAL
},
105 { "subtree", NO_FAST_FORWARD
| NO_TRIVIAL
},
108 static const char *pull_twohead
, *pull_octopus
;
116 static enum ff_type fast_forward
= FF_ALLOW
;
118 static const char *cleanup_arg
;
119 static enum commit_msg_cleanup_mode cleanup_mode
;
121 static int option_parse_message(const struct option
*opt
,
122 const char *arg
, int unset
)
124 struct strbuf
*buf
= opt
->value
;
127 strbuf_setlen(buf
, 0);
129 strbuf_addf(buf
, "%s%s", buf
->len
? "\n\n" : "", arg
);
132 return error(_("switch `m' requires a value"));
136 static enum parse_opt_result
option_read_message(struct parse_opt_ctx_t
*ctx
,
137 const struct option
*opt
,
138 const char *arg_not_used
,
141 struct strbuf
*buf
= opt
->value
;
144 BUG_ON_OPT_ARG(arg_not_used
);
146 BUG("-F cannot be negated");
151 } else if (ctx
->argc
> 1) {
155 return error(_("option `%s' requires a value"), opt
->long_name
);
158 strbuf_addch(buf
, '\n');
159 if (ctx
->prefix
&& !is_absolute_path(arg
))
160 arg
= prefix_filename(ctx
->prefix
, arg
);
161 if (strbuf_read_file(buf
, arg
, 0) < 0)
162 return error(_("could not read file '%s'"), arg
);
168 static struct strategy
*get_strategy(const char *name
)
171 struct strategy
*ret
;
172 static struct cmdnames main_cmds
, other_cmds
;
174 char *default_strategy
= getenv("GIT_TEST_MERGE_ALGORITHM");
179 if (default_strategy
&&
180 !strcmp(default_strategy
, "ort") &&
181 !strcmp(name
, "recursive")) {
185 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
186 if (!strcmp(name
, all_strategy
[i
].name
))
187 return &all_strategy
[i
];
190 struct cmdnames not_strategies
;
193 memset(¬_strategies
, 0, sizeof(struct cmdnames
));
194 load_command_list("git-merge-", &main_cmds
, &other_cmds
);
195 for (i
= 0; i
< main_cmds
.cnt
; i
++) {
197 struct cmdname
*ent
= main_cmds
.names
[i
];
198 for (j
= 0; !found
&& j
< ARRAY_SIZE(all_strategy
); j
++)
199 if (!strncmp(ent
->name
, all_strategy
[j
].name
, ent
->len
)
200 && !all_strategy
[j
].name
[ent
->len
])
203 add_cmdname(¬_strategies
, ent
->name
, ent
->len
);
205 exclude_cmds(&main_cmds
, ¬_strategies
);
207 if (!is_in_cmdlist(&main_cmds
, name
) && !is_in_cmdlist(&other_cmds
, name
)) {
208 fprintf(stderr
, _("Could not find merge strategy '%s'.\n"), name
);
209 fprintf(stderr
, _("Available strategies are:"));
210 for (i
= 0; i
< main_cmds
.cnt
; i
++)
211 fprintf(stderr
, " %s", main_cmds
.names
[i
]->name
);
212 fprintf(stderr
, ".\n");
213 if (other_cmds
.cnt
) {
214 fprintf(stderr
, _("Available custom strategies are:"));
215 for (i
= 0; i
< other_cmds
.cnt
; i
++)
216 fprintf(stderr
, " %s", other_cmds
.names
[i
]->name
);
217 fprintf(stderr
, ".\n");
222 CALLOC_ARRAY(ret
, 1);
223 ret
->name
= xstrdup(name
);
224 ret
->attr
= NO_TRIVIAL
;
228 static void append_strategy(struct strategy
*s
)
230 ALLOC_GROW(use_strategies
, use_strategies_nr
+ 1, use_strategies_alloc
);
231 use_strategies
[use_strategies_nr
++] = s
;
234 static int option_parse_strategy(const struct option
*opt UNUSED
,
235 const char *name
, int unset
)
240 append_strategy(get_strategy(name
));
244 static struct option builtin_merge_options
[] = {
245 OPT_SET_INT('n', NULL
, &show_diffstat
,
246 N_("do not show a diffstat at the end of the merge"), 0),
247 OPT_BOOL(0, "stat", &show_diffstat
,
248 N_("show a diffstat at the end of the merge")),
249 OPT_BOOL(0, "summary", &show_diffstat
, N_("(synonym to --stat)")),
250 { OPTION_INTEGER
, 0, "log", &shortlog_len
, N_("n"),
251 N_("add (at most <n>) entries from shortlog to merge commit message"),
252 PARSE_OPT_OPTARG
, NULL
, DEFAULT_MERGE_LOG_LEN
},
253 OPT_BOOL(0, "squash", &squash
,
254 N_("create a single commit instead of doing a merge")),
255 OPT_BOOL(0, "commit", &option_commit
,
256 N_("perform a commit if the merge succeeds (default)")),
257 OPT_BOOL('e', "edit", &option_edit
,
258 N_("edit message before committing")),
259 OPT_CLEANUP(&cleanup_arg
),
260 OPT_SET_INT(0, "ff", &fast_forward
, N_("allow fast-forward (default)"), FF_ALLOW
),
261 OPT_SET_INT_F(0, "ff-only", &fast_forward
,
262 N_("abort if fast-forward is not possible"),
263 FF_ONLY
, PARSE_OPT_NONEG
),
264 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
265 OPT_BOOL(0, "verify-signatures", &verify_signatures
,
266 N_("verify that the named commit has a valid GPG signature")),
267 OPT_CALLBACK('s', "strategy", NULL
, N_("strategy"),
268 N_("merge strategy to use"), option_parse_strategy
),
269 OPT_STRVEC('X', "strategy-option", &xopts
, N_("option=value"),
270 N_("option for selected merge strategy")),
271 OPT_CALLBACK('m', "message", &merge_msg
, N_("message"),
272 N_("merge commit message (for a non-fast-forward merge)"),
273 option_parse_message
),
274 { OPTION_LOWLEVEL_CALLBACK
, 'F', "file", &merge_msg
, N_("path"),
275 N_("read message from file"), PARSE_OPT_NONEG
,
276 NULL
, 0, option_read_message
},
277 OPT_STRING(0, "into-name", &into_name
, N_("name"),
278 N_("use <name> instead of the real target")),
279 OPT__VERBOSITY(&verbosity
),
280 OPT_BOOL(0, "abort", &abort_current_merge
,
281 N_("abort the current in-progress merge")),
282 OPT_BOOL(0, "quit", &quit_current_merge
,
283 N_("--abort but leave index and working tree alone")),
284 OPT_BOOL(0, "continue", &continue_current_merge
,
285 N_("continue the current in-progress merge")),
286 OPT_BOOL(0, "allow-unrelated-histories", &allow_unrelated_histories
,
287 N_("allow merging unrelated histories")),
288 OPT_SET_INT(0, "progress", &show_progress
, N_("force progress reporting"), 1),
289 { OPTION_STRING
, 'S', "gpg-sign", &sign_commit
, N_("key-id"),
290 N_("GPG sign commit"), PARSE_OPT_OPTARG
, NULL
, (intptr_t) "" },
291 OPT_AUTOSTASH(&autostash
),
292 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore
, N_("update ignored files (default)")),
293 OPT_BOOL(0, "signoff", &signoff
, N_("add a Signed-off-by trailer")),
294 OPT_BOOL(0, "no-verify", &no_verify
, N_("bypass pre-merge-commit and commit-msg hooks")),
298 static int save_state(struct object_id
*stash
)
301 struct child_process cp
= CHILD_PROCESS_INIT
;
302 struct strbuf buffer
= STRBUF_INIT
;
303 struct lock_file lock_file
= LOCK_INIT
;
307 fd
= repo_hold_locked_index(the_repository
, &lock_file
, 0);
308 refresh_index(&the_index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
310 repo_update_index_if_able(the_repository
, &lock_file
);
311 rollback_lock_file(&lock_file
);
313 strvec_pushl(&cp
.args
, "stash", "create", NULL
);
317 if (start_command(&cp
))
318 die(_("could not run stash."));
319 len
= strbuf_read(&buffer
, cp
.out
, 1024);
322 if (finish_command(&cp
) || len
< 0)
323 die(_("stash failed"));
324 else if (!len
) /* no changes */
326 strbuf_setlen(&buffer
, buffer
.len
-1);
327 if (repo_get_oid(the_repository
, buffer
.buf
, stash
))
328 die(_("not a valid object: %s"), buffer
.buf
);
331 strbuf_release(&buffer
);
335 static void read_empty(const struct object_id
*oid
)
337 struct child_process cmd
= CHILD_PROCESS_INIT
;
339 strvec_pushl(&cmd
.args
, "read-tree", "-m", "-u", empty_tree_oid_hex(),
340 oid_to_hex(oid
), NULL
);
343 if (run_command(&cmd
))
344 die(_("read-tree failed"));
347 static void reset_hard(const struct object_id
*oid
)
349 struct child_process cmd
= CHILD_PROCESS_INIT
;
351 strvec_pushl(&cmd
.args
, "read-tree", "-v", "--reset", "-u",
352 oid_to_hex(oid
), NULL
);
355 if (run_command(&cmd
))
356 die(_("read-tree failed"));
359 static void restore_state(const struct object_id
*head
,
360 const struct object_id
*stash
)
362 struct child_process cmd
= CHILD_PROCESS_INIT
;
366 if (is_null_oid(stash
))
369 strvec_pushl(&cmd
.args
, "stash", "apply", "--index", "--quiet", NULL
);
370 strvec_push(&cmd
.args
, oid_to_hex(stash
));
373 * It is OK to ignore error here, for example when there was
374 * nothing to restore.
380 discard_index(&the_index
);
381 if (repo_read_index(the_repository
) < 0)
382 die(_("could not read index"));
385 /* This is called when no merge was necessary. */
386 static void finish_up_to_date(void)
388 if (verbosity
>= 0) {
390 puts(_("Already up to date. (nothing to squash)"));
392 puts(_("Already up to date."));
394 remove_merge_branch_state(the_repository
);
397 static void squash_message(struct commit
*commit
, struct commit_list
*remoteheads
)
400 struct strbuf out
= STRBUF_INIT
;
401 struct commit_list
*j
;
402 struct pretty_print_context ctx
= {0};
404 printf(_("Squash commit -- not updating HEAD\n"));
406 repo_init_revisions(the_repository
, &rev
, NULL
);
407 diff_merges_suppress(&rev
);
408 rev
.commit_format
= CMIT_FMT_MEDIUM
;
410 commit
->object
.flags
|= UNINTERESTING
;
411 add_pending_object(&rev
, &commit
->object
, NULL
);
413 for (j
= remoteheads
; j
; j
= j
->next
)
414 add_pending_object(&rev
, &j
->item
->object
, NULL
);
416 setup_revisions(0, NULL
, &rev
, NULL
);
417 if (prepare_revision_walk(&rev
))
418 die(_("revision walk setup failed"));
420 ctx
.abbrev
= rev
.abbrev
;
421 ctx
.date_mode
= rev
.date_mode
;
422 ctx
.fmt
= rev
.commit_format
;
424 strbuf_addstr(&out
, "Squashed commit of the following:\n");
425 while ((commit
= get_revision(&rev
)) != NULL
) {
426 strbuf_addch(&out
, '\n');
427 strbuf_addf(&out
, "commit %s\n",
428 oid_to_hex(&commit
->object
.oid
));
429 pretty_print_commit(&ctx
, commit
, &out
);
431 write_file_buf(git_path_squash_msg(the_repository
), out
.buf
, out
.len
);
432 strbuf_release(&out
);
433 release_revisions(&rev
);
436 static void finish(struct commit
*head_commit
,
437 struct commit_list
*remoteheads
,
438 const struct object_id
*new_head
, const char *msg
)
440 struct strbuf reflog_message
= STRBUF_INIT
;
441 const struct object_id
*head
= &head_commit
->object
.oid
;
444 strbuf_addstr(&reflog_message
, getenv("GIT_REFLOG_ACTION"));
448 strbuf_addf(&reflog_message
, "%s: %s",
449 getenv("GIT_REFLOG_ACTION"), msg
);
452 squash_message(head_commit
, remoteheads
);
454 if (verbosity
>= 0 && !merge_msg
.len
)
455 printf(_("No merge message -- not updating HEAD\n"));
457 update_ref(reflog_message
.buf
, "HEAD", new_head
, head
,
458 0, UPDATE_REFS_DIE_ON_ERR
);
460 * We ignore errors in 'gc --auto', since the
461 * user should see them.
463 run_auto_maintenance(verbosity
< 0);
466 if (new_head
&& show_diffstat
) {
467 struct diff_options opts
;
468 repo_diff_setup(the_repository
, &opts
);
469 init_diffstat_widths(&opts
);
470 opts
.output_format
|=
471 DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
472 opts
.detect_rename
= DIFF_DETECT_RENAME
;
473 diff_setup_done(&opts
);
474 diff_tree_oid(head
, new_head
, "", &opts
);
479 /* Run a post-merge hook */
480 run_hooks_l("post-merge", squash
? "1" : "0", NULL
);
483 apply_autostash(git_path_merge_autostash(the_repository
));
484 strbuf_release(&reflog_message
);
487 /* Get the name for the merge commit's message. */
488 static void merge_name(const char *remote
, struct strbuf
*msg
)
490 struct commit
*remote_head
;
491 struct object_id branch_head
;
492 struct strbuf bname
= STRBUF_INIT
;
493 struct merge_remote_desc
*desc
;
495 char *found_ref
= NULL
;
498 strbuf_branchname(&bname
, remote
, 0);
501 oidclr(&branch_head
);
502 remote_head
= get_merge_parent(remote
);
504 die(_("'%s' does not point to a commit"), remote
);
506 if (repo_dwim_ref(the_repository
, remote
, strlen(remote
), &branch_head
,
507 &found_ref
, 0) > 0) {
508 if (starts_with(found_ref
, "refs/heads/")) {
509 strbuf_addf(msg
, "%s\t\tbranch '%s' of .\n",
510 oid_to_hex(&branch_head
), remote
);
513 if (starts_with(found_ref
, "refs/tags/")) {
514 strbuf_addf(msg
, "%s\t\ttag '%s' of .\n",
515 oid_to_hex(&branch_head
), remote
);
518 if (starts_with(found_ref
, "refs/remotes/")) {
519 strbuf_addf(msg
, "%s\t\tremote-tracking branch '%s' of .\n",
520 oid_to_hex(&branch_head
), remote
);
525 /* See if remote matches <name>^^^.. or <name>~<number> */
526 for (len
= 0, ptr
= remote
+ strlen(remote
);
527 remote
< ptr
&& ptr
[-1] == '^';
534 ptr
= strrchr(remote
, '~');
536 int seen_nonzero
= 0;
539 while (*++ptr
&& isdigit(*ptr
)) {
540 seen_nonzero
|= (*ptr
!= '0');
544 len
= 0; /* not ...~<number> */
545 else if (seen_nonzero
)
548 early
= 1; /* "name~" is "name~1"! */
552 struct strbuf truname
= STRBUF_INIT
;
553 strbuf_addf(&truname
, "refs/heads/%s", remote
);
554 strbuf_setlen(&truname
, truname
.len
- len
);
555 if (ref_exists(truname
.buf
)) {
557 "%s\t\tbranch '%s'%s of .\n",
558 oid_to_hex(&remote_head
->object
.oid
),
560 (early
? " (early part)" : ""));
561 strbuf_release(&truname
);
564 strbuf_release(&truname
);
567 desc
= merge_remote_util(remote_head
);
568 if (desc
&& desc
->obj
&& desc
->obj
->type
== OBJ_TAG
) {
569 strbuf_addf(msg
, "%s\t\t%s '%s'\n",
570 oid_to_hex(&desc
->obj
->oid
),
571 type_name(desc
->obj
->type
),
576 strbuf_addf(msg
, "%s\t\tcommit '%s'\n",
577 oid_to_hex(&remote_head
->object
.oid
), remote
);
580 strbuf_release(&bname
);
583 static void parse_branch_merge_options(char *bmo
)
590 argc
= split_cmdline(bmo
, &argv
);
592 die(_("Bad branch.%s.mergeoptions string: %s"), branch
,
593 _(split_cmdline_strerror(argc
)));
594 REALLOC_ARRAY(argv
, argc
+ 2);
595 MOVE_ARRAY(argv
+ 1, argv
, argc
+ 1);
597 argv
[0] = "branch.*.mergeoptions";
598 parse_options(argc
, argv
, NULL
, builtin_merge_options
,
599 builtin_merge_usage
, 0);
603 static int git_merge_config(const char *k
, const char *v
,
604 const struct config_context
*ctx
, void *cb
)
610 skip_prefix(k
, "branch.", &str
) &&
611 skip_prefix(str
, branch
, &str
) &&
612 !strcmp(str
, ".mergeoptions")) {
613 free(branch_mergeoptions
);
614 branch_mergeoptions
= xstrdup(v
);
618 if (!strcmp(k
, "merge.diffstat") || !strcmp(k
, "merge.stat"))
619 show_diffstat
= git_config_bool(k
, v
);
620 else if (!strcmp(k
, "merge.verifysignatures"))
621 verify_signatures
= git_config_bool(k
, v
);
622 else if (!strcmp(k
, "pull.twohead"))
623 return git_config_string(&pull_twohead
, k
, v
);
624 else if (!strcmp(k
, "pull.octopus"))
625 return git_config_string(&pull_octopus
, k
, v
);
626 else if (!strcmp(k
, "commit.cleanup"))
627 return git_config_string(&cleanup_arg
, k
, v
);
628 else if (!strcmp(k
, "merge.ff")) {
629 int boolval
= git_parse_maybe_bool(v
);
631 fast_forward
= boolval
? FF_ALLOW
: FF_NO
;
632 } else if (v
&& !strcmp(v
, "only")) {
633 fast_forward
= FF_ONLY
;
634 } /* do not barf on values from future versions of git */
636 } else if (!strcmp(k
, "merge.defaulttoupstream")) {
637 default_to_upstream
= git_config_bool(k
, v
);
639 } else if (!strcmp(k
, "commit.gpgsign")) {
640 sign_commit
= git_config_bool(k
, v
) ? "" : NULL
;
642 } else if (!strcmp(k
, "gpg.mintrustlevel")) {
643 check_trust_level
= 0;
644 } else if (!strcmp(k
, "merge.autostash")) {
645 autostash
= git_config_bool(k
, v
);
649 status
= fmt_merge_msg_config(k
, v
, ctx
, cb
);
652 return git_diff_ui_config(k
, v
, ctx
, cb
);
655 static int read_tree_trivial(struct object_id
*common
, struct object_id
*head
,
656 struct object_id
*one
)
659 struct tree
*trees
[MAX_UNPACK_TREES
];
660 struct tree_desc t
[MAX_UNPACK_TREES
];
661 struct unpack_trees_options opts
;
663 memset(&opts
, 0, sizeof(opts
));
665 opts
.src_index
= &the_index
;
666 opts
.dst_index
= &the_index
;
668 opts
.verbose_update
= 1;
669 opts
.trivial_merges_only
= 1;
671 opts
.preserve_ignored
= 0; /* FIXME: !overwrite_ignore */
672 trees
[nr_trees
] = parse_tree_indirect(common
);
673 if (!trees
[nr_trees
++])
675 trees
[nr_trees
] = parse_tree_indirect(head
);
676 if (!trees
[nr_trees
++])
678 trees
[nr_trees
] = parse_tree_indirect(one
);
679 if (!trees
[nr_trees
++])
681 opts
.fn
= threeway_merge
;
682 cache_tree_free(&the_index
.cache_tree
);
683 for (i
= 0; i
< nr_trees
; i
++) {
684 parse_tree(trees
[i
]);
685 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
687 if (unpack_trees(nr_trees
, t
, &opts
))
692 static void write_tree_trivial(struct object_id
*oid
)
694 if (write_index_as_tree(oid
, &the_index
, get_index_file(), 0, NULL
))
695 die(_("git write-tree failed to write a tree"));
698 static int try_merge_strategy(const char *strategy
, struct commit_list
*common
,
699 struct commit_list
*remoteheads
,
702 const char *head_arg
= "HEAD";
704 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
,
705 SKIP_IF_UNCHANGED
, 0, NULL
, NULL
,
707 return error(_("Unable to write index."));
709 if (!strcmp(strategy
, "recursive") || !strcmp(strategy
, "subtree") ||
710 !strcmp(strategy
, "ort")) {
711 struct lock_file lock
= LOCK_INIT
;
713 struct commit
*result
;
714 struct commit_list
*reversed
= NULL
;
715 struct merge_options o
;
716 struct commit_list
*j
;
718 if (remoteheads
->next
) {
719 error(_("Not handling anything other than two heads merge."));
723 init_merge_options(&o
, the_repository
);
724 if (!strcmp(strategy
, "subtree"))
725 o
.subtree_shift
= "";
727 o
.show_rename_progress
=
728 show_progress
== -1 ? isatty(2) : show_progress
;
730 for (x
= 0; x
< xopts
.nr
; x
++)
731 if (parse_merge_opt(&o
, xopts
.v
[x
]))
732 die(_("unknown strategy option: -X%s"), xopts
.v
[x
]);
734 o
.branch1
= head_arg
;
735 o
.branch2
= merge_remote_util(remoteheads
->item
)->name
;
737 for (j
= common
; j
; j
= j
->next
)
738 commit_list_insert(j
->item
, &reversed
);
740 repo_hold_locked_index(the_repository
, &lock
,
742 if (!strcmp(strategy
, "ort"))
743 clean
= merge_ort_recursive(&o
, head
, remoteheads
->item
,
746 clean
= merge_recursive(&o
, head
, remoteheads
->item
,
749 rollback_lock_file(&lock
);
752 if (write_locked_index(&the_index
, &lock
,
753 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
754 die(_("unable to write %s"), get_index_file());
755 return clean
? 0 : 1;
757 return try_merge_command(the_repository
,
758 strategy
, xopts
.nr
, xopts
.v
,
759 common
, head_arg
, remoteheads
);
763 static void count_diff_files(struct diff_queue_struct
*q
,
764 struct diff_options
*opt UNUSED
, void *data
)
771 static int count_unmerged_entries(void)
775 for (i
= 0; i
< the_index
.cache_nr
; i
++)
776 if (ce_stage(the_index
.cache
[i
]))
782 static void add_strategies(const char *string
, unsigned attr
)
787 struct string_list list
= STRING_LIST_INIT_DUP
;
788 struct string_list_item
*item
;
789 string_list_split(&list
, string
, ' ', -1);
790 for_each_string_list_item(item
, &list
)
791 append_strategy(get_strategy(item
->string
));
792 string_list_clear(&list
, 0);
795 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
796 if (all_strategy
[i
].attr
& attr
)
797 append_strategy(&all_strategy
[i
]);
801 static void read_merge_msg(struct strbuf
*msg
)
803 const char *filename
= git_path_merge_msg(the_repository
);
805 if (strbuf_read_file(msg
, filename
, 0) < 0)
806 die_errno(_("Could not read from '%s'"), filename
);
809 static void write_merge_state(struct commit_list
*);
810 static void abort_commit(struct commit_list
*remoteheads
, const char *err_msg
)
813 error("%s", err_msg
);
815 _("Not committing merge; use 'git commit' to complete the merge.\n"));
816 write_merge_state(remoteheads
);
820 static const char merge_editor_comment
[] =
821 N_("Please enter a commit message to explain why this merge is necessary,\n"
822 "especially if it merges an updated upstream into a topic branch.\n"
825 static const char scissors_editor_comment
[] =
826 N_("An empty message aborts the commit.\n");
828 static const char no_scissors_editor_comment
[] =
829 N_("Lines starting with '%c' will be ignored, and an empty message aborts\n"
832 static void write_merge_heads(struct commit_list
*);
833 static void prepare_to_commit(struct commit_list
*remoteheads
)
835 struct strbuf msg
= STRBUF_INIT
;
836 const char *index_file
= get_index_file();
841 if (run_commit_hook(0 < option_edit
, index_file
, &invoked_hook
,
842 "pre-merge-commit", NULL
))
843 abort_commit(remoteheads
, NULL
);
845 * Re-read the index as pre-merge-commit hook could have updated it,
846 * and write it out as a tree. We must do this before we invoke
847 * the editor and after we invoke run_status above.
850 discard_index(&the_index
);
852 read_index_from(&the_index
, index_file
, get_git_dir());
853 strbuf_addbuf(&msg
, &merge_msg
);
855 BUG("the control must not reach here under --squash");
856 if (0 < option_edit
) {
857 strbuf_addch(&msg
, '\n');
858 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
) {
859 wt_status_append_cut_line(&msg
);
860 strbuf_commented_addf(&msg
, comment_line_char
, "\n");
862 strbuf_commented_addf(&msg
, comment_line_char
,
863 _(merge_editor_comment
));
864 if (cleanup_mode
== COMMIT_MSG_CLEANUP_SCISSORS
)
865 strbuf_commented_addf(&msg
, comment_line_char
,
866 _(scissors_editor_comment
));
868 strbuf_commented_addf(&msg
, comment_line_char
,
869 _(no_scissors_editor_comment
), comment_line_char
);
872 append_signoff(&msg
, ignore_non_trailer(msg
.buf
, msg
.len
), 0);
873 write_merge_heads(remoteheads
);
874 write_file_buf(git_path_merge_msg(the_repository
), msg
.buf
, msg
.len
);
875 if (run_commit_hook(0 < option_edit
, get_index_file(), NULL
,
876 "prepare-commit-msg",
877 git_path_merge_msg(the_repository
), "merge", NULL
))
878 abort_commit(remoteheads
, NULL
);
879 if (0 < option_edit
) {
880 if (launch_editor(git_path_merge_msg(the_repository
), NULL
, NULL
))
881 abort_commit(remoteheads
, NULL
);
884 if (!no_verify
&& run_commit_hook(0 < option_edit
, get_index_file(),
886 git_path_merge_msg(the_repository
), NULL
))
887 abort_commit(remoteheads
, NULL
);
889 read_merge_msg(&msg
);
890 cleanup_message(&msg
, cleanup_mode
, 0);
892 abort_commit(remoteheads
, _("Empty commit message."));
893 strbuf_release(&merge_msg
);
894 strbuf_addbuf(&merge_msg
, &msg
);
895 strbuf_release(&msg
);
898 static int merge_trivial(struct commit
*head
, struct commit_list
*remoteheads
)
900 struct object_id result_tree
, result_commit
;
901 struct commit_list
*parents
, **pptr
= &parents
;
903 if (repo_refresh_and_write_index(the_repository
, REFRESH_QUIET
,
904 SKIP_IF_UNCHANGED
, 0, NULL
, NULL
,
906 return error(_("Unable to write index."));
908 write_tree_trivial(&result_tree
);
909 printf(_("Wonderful.\n"));
910 pptr
= commit_list_append(head
, pptr
);
911 pptr
= commit_list_append(remoteheads
->item
, pptr
);
912 prepare_to_commit(remoteheads
);
913 if (commit_tree(merge_msg
.buf
, merge_msg
.len
, &result_tree
, parents
,
914 &result_commit
, NULL
, sign_commit
))
915 die(_("failed to write commit object"));
916 finish(head
, remoteheads
, &result_commit
, "In-index merge");
917 remove_merge_branch_state(the_repository
);
921 static int finish_automerge(struct commit
*head
,
923 struct commit_list
*common
,
924 struct commit_list
*remoteheads
,
925 struct object_id
*result_tree
,
926 const char *wt_strategy
)
928 struct commit_list
*parents
= NULL
;
929 struct strbuf buf
= STRBUF_INIT
;
930 struct object_id result_commit
;
932 write_tree_trivial(result_tree
);
933 free_commit_list(common
);
934 parents
= remoteheads
;
935 if (!head_subsumed
|| fast_forward
== FF_NO
)
936 commit_list_insert(head
, &parents
);
937 prepare_to_commit(remoteheads
);
938 if (commit_tree(merge_msg
.buf
, merge_msg
.len
, result_tree
, parents
,
939 &result_commit
, NULL
, sign_commit
))
940 die(_("failed to write commit object"));
941 strbuf_addf(&buf
, "Merge made by the '%s' strategy.", wt_strategy
);
942 finish(head
, remoteheads
, &result_commit
, buf
.buf
);
943 strbuf_release(&buf
);
944 remove_merge_branch_state(the_repository
);
948 static int suggest_conflicts(void)
950 const char *filename
;
952 struct strbuf msgbuf
= STRBUF_INIT
;
954 filename
= git_path_merge_msg(the_repository
);
955 fp
= xfopen(filename
, "a");
958 * We can't use cleanup_mode because if we're not using the editor,
959 * get_cleanup_mode will return COMMIT_MSG_CLEANUP_SPACE instead, even
960 * though the message is meant to be processed later by git-commit.
961 * Thus, we will get the cleanup mode which is returned when we _are_
964 append_conflicts_hint(&the_index
, &msgbuf
,
965 get_cleanup_mode(cleanup_arg
, 1));
966 fputs(msgbuf
.buf
, fp
);
967 strbuf_release(&msgbuf
);
969 repo_rerere(the_repository
, allow_rerere_auto
);
970 printf(_("Automatic merge failed; "
971 "fix conflicts and then commit the result.\n"));
975 static int evaluate_result(void)
980 /* Check how many files differ. */
981 repo_init_revisions(the_repository
, &rev
, "");
982 setup_revisions(0, NULL
, &rev
, NULL
);
983 rev
.diffopt
.output_format
|=
984 DIFF_FORMAT_CALLBACK
;
985 rev
.diffopt
.format_callback
= count_diff_files
;
986 rev
.diffopt
.format_callback_data
= &cnt
;
987 run_diff_files(&rev
, 0);
990 * Check how many unmerged entries are
993 cnt
+= count_unmerged_entries();
995 release_revisions(&rev
);
1000 * Pretend as if the user told us to merge with the remote-tracking
1001 * branch we have for the upstream of the current branch
1003 static int setup_with_upstream(const char ***argv
)
1005 struct branch
*branch
= branch_get(NULL
);
1010 die(_("No current branch."));
1011 if (!branch
->remote_name
)
1012 die(_("No remote for the current branch."));
1013 if (!branch
->merge_nr
)
1014 die(_("No default upstream defined for the current branch."));
1016 args
= xcalloc(st_add(branch
->merge_nr
, 1), sizeof(char *));
1017 for (i
= 0; i
< branch
->merge_nr
; i
++) {
1018 if (!branch
->merge
[i
]->dst
)
1019 die(_("No remote-tracking branch for %s from %s"),
1020 branch
->merge
[i
]->src
, branch
->remote_name
);
1021 args
[i
] = branch
->merge
[i
]->dst
;
1028 static void write_merge_heads(struct commit_list
*remoteheads
)
1030 struct commit_list
*j
;
1031 struct strbuf buf
= STRBUF_INIT
;
1033 for (j
= remoteheads
; j
; j
= j
->next
) {
1034 struct object_id
*oid
;
1035 struct commit
*c
= j
->item
;
1036 struct merge_remote_desc
*desc
;
1038 desc
= merge_remote_util(c
);
1039 if (desc
&& desc
->obj
) {
1040 oid
= &desc
->obj
->oid
;
1042 oid
= &c
->object
.oid
;
1044 strbuf_addf(&buf
, "%s\n", oid_to_hex(oid
));
1046 write_file_buf(git_path_merge_head(the_repository
), buf
.buf
, buf
.len
);
1049 if (fast_forward
== FF_NO
)
1050 strbuf_addstr(&buf
, "no-ff");
1051 write_file_buf(git_path_merge_mode(the_repository
), buf
.buf
, buf
.len
);
1052 strbuf_release(&buf
);
1055 static void write_merge_state(struct commit_list
*remoteheads
)
1057 write_merge_heads(remoteheads
);
1058 strbuf_addch(&merge_msg
, '\n');
1059 write_file_buf(git_path_merge_msg(the_repository
), merge_msg
.buf
,
1063 static int default_edit_option(void)
1065 static const char name
[] = "GIT_MERGE_AUTOEDIT";
1066 const char *e
= getenv(name
);
1067 struct stat st_stdin
, st_stdout
;
1070 /* an explicit -m msg without --[no-]edit */
1074 int v
= git_parse_maybe_bool(e
);
1076 die(_("Bad value '%s' in environment '%s'"), e
, name
);
1080 /* Use editor if stdin and stdout are the same and is a tty */
1081 return (!fstat(0, &st_stdin
) &&
1082 !fstat(1, &st_stdout
) &&
1083 isatty(0) && isatty(1) &&
1084 st_stdin
.st_dev
== st_stdout
.st_dev
&&
1085 st_stdin
.st_ino
== st_stdout
.st_ino
&&
1086 st_stdin
.st_mode
== st_stdout
.st_mode
);
1089 static struct commit_list
*reduce_parents(struct commit
*head_commit
,
1091 struct commit_list
*remoteheads
)
1093 struct commit_list
*parents
, **remotes
;
1096 * Is the current HEAD reachable from another commit being
1097 * merged? If so we do not want to record it as a parent of
1098 * the resulting merge, unless --no-ff is given. We will flip
1099 * this variable to 0 when we find HEAD among the independent
1100 * tips being merged.
1104 /* Find what parents to record by checking independent ones. */
1105 parents
= reduce_heads(remoteheads
);
1106 free_commit_list(remoteheads
);
1109 remotes
= &remoteheads
;
1111 struct commit
*commit
= pop_commit(&parents
);
1112 if (commit
== head_commit
)
1115 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1120 static void prepare_merge_message(struct strbuf
*merge_names
, struct strbuf
*merge_msg
)
1122 struct fmt_merge_msg_opts opts
;
1124 memset(&opts
, 0, sizeof(opts
));
1125 opts
.add_title
= !have_message
;
1126 opts
.shortlog_len
= shortlog_len
;
1127 opts
.credit_people
= (0 < option_edit
);
1128 opts
.into_name
= into_name
;
1130 fmt_merge_msg(merge_names
, merge_msg
, &opts
);
1132 strbuf_setlen(merge_msg
, merge_msg
->len
- 1);
1135 static void handle_fetch_head(struct commit_list
**remotes
, struct strbuf
*merge_names
)
1137 const char *filename
;
1139 struct strbuf fetch_head_file
= STRBUF_INIT
;
1140 const unsigned hexsz
= the_hash_algo
->hexsz
;
1143 merge_names
= &fetch_head_file
;
1145 filename
= git_path_fetch_head(the_repository
);
1146 fd
= xopen(filename
, O_RDONLY
);
1148 if (strbuf_read(merge_names
, fd
, 0) < 0)
1149 die_errno(_("could not read '%s'"), filename
);
1151 die_errno(_("could not close '%s'"), filename
);
1153 for (pos
= 0; pos
< merge_names
->len
; pos
= npos
) {
1154 struct object_id oid
;
1156 struct commit
*commit
;
1158 ptr
= strchr(merge_names
->buf
+ pos
, '\n');
1160 npos
= ptr
- merge_names
->buf
+ 1;
1162 npos
= merge_names
->len
;
1164 if (npos
- pos
< hexsz
+ 2 ||
1165 get_oid_hex(merge_names
->buf
+ pos
, &oid
))
1166 commit
= NULL
; /* bad */
1167 else if (memcmp(merge_names
->buf
+ pos
+ hexsz
, "\t\t", 2))
1168 continue; /* not-for-merge */
1170 char saved
= merge_names
->buf
[pos
+ hexsz
];
1171 merge_names
->buf
[pos
+ hexsz
] = '\0';
1172 commit
= get_merge_parent(merge_names
->buf
+ pos
);
1173 merge_names
->buf
[pos
+ hexsz
] = saved
;
1178 die(_("not something we can merge in %s: %s"),
1179 filename
, merge_names
->buf
+ pos
);
1181 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1184 if (merge_names
== &fetch_head_file
)
1185 strbuf_release(&fetch_head_file
);
1188 static struct commit_list
*collect_parents(struct commit
*head_commit
,
1190 int argc
, const char **argv
,
1191 struct strbuf
*merge_msg
)
1194 struct commit_list
*remoteheads
= NULL
;
1195 struct commit_list
**remotes
= &remoteheads
;
1196 struct strbuf merge_names
= STRBUF_INIT
, *autogen
= NULL
;
1198 if (merge_msg
&& (!have_message
|| shortlog_len
))
1199 autogen
= &merge_names
;
1202 remotes
= &commit_list_insert(head_commit
, remotes
)->next
;
1204 if (argc
== 1 && !strcmp(argv
[0], "FETCH_HEAD")) {
1205 handle_fetch_head(remotes
, autogen
);
1206 remoteheads
= reduce_parents(head_commit
, head_subsumed
, remoteheads
);
1208 for (i
= 0; i
< argc
; i
++) {
1209 struct commit
*commit
= get_merge_parent(argv
[i
]);
1211 help_unknown_ref(argv
[i
], "merge",
1212 _("not something we can merge"));
1213 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1215 remoteheads
= reduce_parents(head_commit
, head_subsumed
, remoteheads
);
1217 struct commit_list
*p
;
1218 for (p
= remoteheads
; p
; p
= p
->next
)
1219 merge_name(merge_remote_util(p
->item
)->name
, autogen
);
1224 prepare_merge_message(autogen
, merge_msg
);
1225 strbuf_release(autogen
);
1231 static int merging_a_throwaway_tag(struct commit
*commit
)
1234 struct object_id oid
;
1235 int is_throwaway_tag
= 0;
1237 /* Are we merging a tag? */
1238 if (!merge_remote_util(commit
) ||
1239 !merge_remote_util(commit
)->obj
||
1240 merge_remote_util(commit
)->obj
->type
!= OBJ_TAG
)
1241 return is_throwaway_tag
;
1244 * Now we know we are merging a tag object. Are we downstream
1245 * and following the tags from upstream? If so, we must have
1246 * the tag object pointed at by "refs/tags/$T" where $T is the
1247 * tagname recorded in the tag object. We want to allow such
1248 * a "just to catch up" merge to fast-forward.
1250 * Otherwise, we are playing an integrator's role, making a
1251 * merge with a throw-away tag from a contributor with
1252 * something like "git pull $contributor $signed_tag".
1253 * We want to forbid such a merge from fast-forwarding
1254 * by default; otherwise we would not keep the signature
1257 tag_ref
= xstrfmt("refs/tags/%s",
1258 ((struct tag
*)merge_remote_util(commit
)->obj
)->tag
);
1259 if (!read_ref(tag_ref
, &oid
) &&
1260 oideq(&oid
, &merge_remote_util(commit
)->obj
->oid
))
1261 is_throwaway_tag
= 0;
1263 is_throwaway_tag
= 1;
1265 return is_throwaway_tag
;
1268 int cmd_merge(int argc
, const char **argv
, const char *prefix
)
1270 struct object_id result_tree
, stash
, head_oid
;
1271 struct commit
*head_commit
;
1272 struct strbuf buf
= STRBUF_INIT
;
1273 int i
, ret
= 0, head_subsumed
;
1274 int best_cnt
= -1, merge_was_ok
= 0, automerge_was_ok
= 0;
1275 struct commit_list
*common
= NULL
;
1276 const char *best_strategy
= NULL
, *wt_strategy
= NULL
;
1277 struct commit_list
*remoteheads
= NULL
, *p
;
1278 void *branch_to_free
;
1279 int orig_argc
= argc
;
1281 if (argc
== 2 && !strcmp(argv
[1], "-h"))
1282 usage_with_options(builtin_merge_usage
, builtin_merge_options
);
1284 prepare_repo_settings(the_repository
);
1285 the_repository
->settings
.command_requires_full_index
= 0;
1288 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1291 branch
= branch_to_free
= resolve_refdup("HEAD", 0, &head_oid
, NULL
);
1293 skip_prefix(branch
, "refs/heads/", &branch
);
1295 if (!pull_twohead
) {
1296 char *default_strategy
= getenv("GIT_TEST_MERGE_ALGORITHM");
1297 if (default_strategy
&& !strcmp(default_strategy
, "ort"))
1298 pull_twohead
= "ort";
1301 init_diff_ui_defaults();
1302 git_config(git_merge_config
, NULL
);
1304 if (!branch
|| is_null_oid(&head_oid
))
1307 head_commit
= lookup_commit_or_die(&head_oid
, "HEAD");
1309 if (branch_mergeoptions
)
1310 parse_branch_merge_options(branch_mergeoptions
);
1311 argc
= parse_options(argc
, argv
, prefix
, builtin_merge_options
,
1312 builtin_merge_usage
, 0);
1313 if (shortlog_len
< 0)
1314 shortlog_len
= (merge_log_config
> 0) ? merge_log_config
: 0;
1316 if (verbosity
< 0 && show_progress
== -1)
1319 if (abort_current_merge
) {
1321 const char *nargv
[] = {"reset", "--merge", NULL
};
1322 struct strbuf stash_oid
= STRBUF_INIT
;
1325 usage_msg_opt(_("--abort expects no arguments"),
1326 builtin_merge_usage
, builtin_merge_options
);
1328 if (!file_exists(git_path_merge_head(the_repository
)))
1329 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1331 if (read_oneliner(&stash_oid
, git_path_merge_autostash(the_repository
),
1332 READ_ONELINER_SKIP_IF_EMPTY
))
1333 unlink(git_path_merge_autostash(the_repository
));
1335 /* Invoke 'git reset --merge' */
1336 ret
= cmd_reset(nargc
, nargv
, prefix
);
1339 apply_autostash_oid(stash_oid
.buf
);
1341 strbuf_release(&stash_oid
);
1345 if (quit_current_merge
) {
1347 usage_msg_opt(_("--quit expects no arguments"),
1348 builtin_merge_usage
,
1349 builtin_merge_options
);
1351 remove_merge_branch_state(the_repository
);
1355 if (continue_current_merge
) {
1357 const char *nargv
[] = {"commit", NULL
};
1360 usage_msg_opt(_("--continue expects no arguments"),
1361 builtin_merge_usage
, builtin_merge_options
);
1363 if (!file_exists(git_path_merge_head(the_repository
)))
1364 die(_("There is no merge in progress (MERGE_HEAD missing)."));
1366 /* Invoke 'git commit' */
1367 ret
= cmd_commit(nargc
, nargv
, prefix
);
1371 if (repo_read_index_unmerged(the_repository
))
1372 die_resolve_conflict("merge");
1374 if (file_exists(git_path_merge_head(the_repository
))) {
1376 * There is no unmerged entry, don't advise 'git
1377 * add/rm <file>', just 'git commit'.
1379 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
))
1380 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1381 "Please, commit your changes before you merge."));
1383 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1385 if (ref_exists("CHERRY_PICK_HEAD")) {
1386 if (advice_enabled(ADVICE_RESOLVE_CONFLICT
))
1387 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1388 "Please, commit your changes before you merge."));
1390 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1392 resolve_undo_clear_index(&the_index
);
1394 if (option_edit
< 0)
1395 option_edit
= default_edit_option();
1397 cleanup_mode
= get_cleanup_mode(cleanup_arg
, 0 < option_edit
);
1403 if (fast_forward
== FF_NO
)
1404 die(_("options '%s' and '%s' cannot be used together"), "--squash", "--no-ff.");
1405 if (option_commit
> 0)
1406 die(_("options '%s' and '%s' cannot be used together"), "--squash", "--commit.");
1408 * squash can now silently disable option_commit - this is not
1409 * a problem as it is only overriding the default, not a user
1415 if (option_commit
< 0)
1419 if (default_to_upstream
)
1420 argc
= setup_with_upstream(&argv
);
1422 die(_("No commit specified and merge.defaultToUpstream not set."));
1423 } else if (argc
== 1 && !strcmp(argv
[0], "-")) {
1428 usage_with_options(builtin_merge_usage
,
1429 builtin_merge_options
);
1433 * If the merged head is a valid one there is no reason
1434 * to forbid "git merge" into a branch yet to be born.
1435 * We do the same for "git pull".
1437 struct object_id
*remote_head_oid
;
1439 die(_("Squash commit into empty head not supported yet"));
1440 if (fast_forward
== FF_NO
)
1441 die(_("Non-fast-forward commit does not make sense into "
1443 remoteheads
= collect_parents(head_commit
, &head_subsumed
,
1446 die(_("%s - not something we can merge"), argv
[0]);
1447 if (remoteheads
->next
)
1448 die(_("Can merge only exactly one commit into empty head"));
1450 if (verify_signatures
)
1451 verify_merge_signature(remoteheads
->item
, verbosity
,
1454 remote_head_oid
= &remoteheads
->item
->object
.oid
;
1455 read_empty(remote_head_oid
);
1456 update_ref("initial pull", "HEAD", remote_head_oid
, NULL
, 0,
1457 UPDATE_REFS_DIE_ON_ERR
);
1462 * All the rest are the commits being merged; prepare
1463 * the standard merge summary message to be appended
1464 * to the given message.
1466 remoteheads
= collect_parents(head_commit
, &head_subsumed
,
1467 argc
, argv
, &merge_msg
);
1469 if (!head_commit
|| !argc
)
1470 usage_with_options(builtin_merge_usage
,
1471 builtin_merge_options
);
1473 if (verify_signatures
) {
1474 for (p
= remoteheads
; p
; p
= p
->next
) {
1475 verify_merge_signature(p
->item
, verbosity
,
1480 strbuf_addstr(&buf
, "merge");
1481 for (p
= remoteheads
; p
; p
= p
->next
)
1482 strbuf_addf(&buf
, " %s", merge_remote_util(p
->item
)->name
);
1483 setenv("GIT_REFLOG_ACTION", buf
.buf
, 0);
1486 for (p
= remoteheads
; p
; p
= p
->next
) {
1487 struct commit
*commit
= p
->item
;
1488 strbuf_addf(&buf
, "GITHEAD_%s",
1489 oid_to_hex(&commit
->object
.oid
));
1490 setenv(buf
.buf
, merge_remote_util(commit
)->name
, 1);
1492 if (fast_forward
!= FF_ONLY
&& merging_a_throwaway_tag(commit
))
1493 fast_forward
= FF_NO
;
1496 if (!use_strategies
&& !pull_twohead
&&
1497 remoteheads
&& !remoteheads
->next
) {
1498 char *default_strategy
= getenv("GIT_TEST_MERGE_ALGORITHM");
1499 if (default_strategy
)
1500 append_strategy(get_strategy(default_strategy
));
1502 if (!use_strategies
) {
1504 ; /* already up-to-date */
1505 else if (!remoteheads
->next
)
1506 add_strategies(pull_twohead
, DEFAULT_TWOHEAD
);
1508 add_strategies(pull_octopus
, DEFAULT_OCTOPUS
);
1511 for (i
= 0; i
< use_strategies_nr
; i
++) {
1512 if (use_strategies
[i
]->attr
& NO_FAST_FORWARD
)
1513 fast_forward
= FF_NO
;
1514 if (use_strategies
[i
]->attr
& NO_TRIVIAL
)
1519 ; /* already up-to-date */
1520 else if (!remoteheads
->next
)
1521 common
= repo_get_merge_bases(the_repository
, head_commit
,
1524 struct commit_list
*list
= remoteheads
;
1525 commit_list_insert(head_commit
, &list
);
1526 common
= get_octopus_merge_bases(list
);
1530 update_ref("updating ORIG_HEAD", "ORIG_HEAD",
1531 &head_commit
->object
.oid
, NULL
, 0, UPDATE_REFS_DIE_ON_ERR
);
1533 if (remoteheads
&& !common
) {
1534 /* No common ancestors found. */
1535 if (!allow_unrelated_histories
)
1536 die(_("refusing to merge unrelated histories"));
1537 /* otherwise, we need a real merge. */
1538 } else if (!remoteheads
||
1539 (!remoteheads
->next
&& !common
->next
&&
1540 common
->item
== remoteheads
->item
)) {
1542 * If head can reach all the merge then we are up to date.
1543 * but first the most common case of merging one remote.
1545 finish_up_to_date();
1547 } else if (fast_forward
!= FF_NO
&& !remoteheads
->next
&&
1549 oideq(&common
->item
->object
.oid
, &head_commit
->object
.oid
)) {
1550 /* Again the most common case of merging one remote. */
1551 const char *msg
= have_message
?
1552 "Fast-forward (no commit created; -m option ignored)" :
1554 struct commit
*commit
;
1556 if (verbosity
>= 0) {
1557 printf(_("Updating %s..%s\n"),
1558 repo_find_unique_abbrev(the_repository
, &head_commit
->object
.oid
,
1560 repo_find_unique_abbrev(the_repository
, &remoteheads
->item
->object
.oid
,
1563 commit
= remoteheads
->item
;
1570 create_autostash(the_repository
,
1571 git_path_merge_autostash(the_repository
));
1572 if (checkout_fast_forward(the_repository
,
1573 &head_commit
->object
.oid
,
1574 &commit
->object
.oid
,
1575 overwrite_ignore
)) {
1576 apply_autostash(git_path_merge_autostash(the_repository
));
1581 finish(head_commit
, remoteheads
, &commit
->object
.oid
, msg
);
1582 remove_merge_branch_state(the_repository
);
1584 } else if (!remoteheads
->next
&& common
->next
)
1587 * We are not doing octopus and not fast-forward. Need
1590 else if (!remoteheads
->next
&& !common
->next
&& option_commit
) {
1592 * We are not doing octopus, not fast-forward, and have
1595 refresh_index(&the_index
, REFRESH_QUIET
, NULL
, NULL
, NULL
);
1596 if (allow_trivial
&& fast_forward
!= FF_ONLY
) {
1598 * Must first ensure that index matches HEAD before
1599 * attempting a trivial merge.
1601 struct tree
*head_tree
= repo_get_commit_tree(the_repository
,
1603 struct strbuf sb
= STRBUF_INIT
;
1605 if (repo_index_has_changes(the_repository
, head_tree
,
1607 error(_("Your local changes to the following files would be overwritten by merge:\n %s"),
1609 strbuf_release(&sb
);
1614 /* See if it is really trivial. */
1615 git_committer_info(IDENT_STRICT
);
1616 printf(_("Trying really trivial in-index merge...\n"));
1617 if (!read_tree_trivial(&common
->item
->object
.oid
,
1618 &head_commit
->object
.oid
,
1619 &remoteheads
->item
->object
.oid
)) {
1620 ret
= merge_trivial(head_commit
, remoteheads
);
1623 printf(_("Nope.\n"));
1627 * An octopus. If we can reach all the remote we are up
1631 struct commit_list
*j
;
1633 for (j
= remoteheads
; j
; j
= j
->next
) {
1634 struct commit_list
*common_one
;
1635 struct commit
*common_item
;
1638 * Here we *have* to calculate the individual
1639 * merge_bases again, otherwise "git merge HEAD^
1640 * HEAD^^" would be missed.
1642 common_one
= repo_get_merge_bases(the_repository
,
1645 common_item
= common_one
->item
;
1646 free_commit_list(common_one
);
1647 if (!oideq(&common_item
->object
.oid
, &j
->item
->object
.oid
)) {
1653 finish_up_to_date();
1658 if (fast_forward
== FF_ONLY
)
1659 die_ff_impossible();
1662 create_autostash(the_repository
,
1663 git_path_merge_autostash(the_repository
));
1665 /* We are going to make a new commit. */
1666 git_committer_info(IDENT_STRICT
);
1669 * At this point, we need a real merge. No matter what strategy
1670 * we use, it would operate on the index, possibly affecting the
1671 * working tree, and when resolved cleanly, have the desired
1672 * tree in the index -- this means that the index must be in
1673 * sync with the head commit. The strategies are responsible
1676 * Stash away the local changes so that we can try more than one
1677 * and/or recover from merge strategies bailing while leaving the
1678 * index and working tree polluted.
1680 if (save_state(&stash
))
1683 for (i
= 0; i
< use_strategies_nr
; i
++) {
1686 printf(_("Rewinding the tree to pristine...\n"));
1687 restore_state(&head_commit
->object
.oid
, &stash
);
1689 if (use_strategies_nr
!= 1)
1690 printf(_("Trying merge strategy %s...\n"),
1691 use_strategies
[i
]->name
);
1693 * Remember which strategy left the state in the working
1696 wt_strategy
= use_strategies
[i
]->name
;
1698 ret
= try_merge_strategy(wt_strategy
,
1699 common
, remoteheads
,
1702 * The backend exits with 1 when conflicts are
1703 * left to be resolved, with 2 when it does not
1704 * handle the given merge at all.
1709 * This strategy worked; no point in trying
1713 best_strategy
= wt_strategy
;
1716 cnt
= (use_strategies_nr
> 1) ? evaluate_result() : 0;
1717 if (best_cnt
<= 0 || cnt
<= best_cnt
) {
1718 best_strategy
= wt_strategy
;
1725 * If we have a resulting tree, that means the strategy module
1726 * auto resolved the merge cleanly.
1728 if (merge_was_ok
&& option_commit
) {
1729 automerge_was_ok
= 1;
1730 ret
= finish_automerge(head_commit
, head_subsumed
,
1731 common
, remoteheads
,
1732 &result_tree
, wt_strategy
);
1737 * Pick the result from the best strategy and have the user fix
1740 if (!best_strategy
) {
1741 restore_state(&head_commit
->object
.oid
, &stash
);
1742 if (use_strategies_nr
> 1)
1744 _("No merge strategy handled the merge.\n"));
1746 fprintf(stderr
, _("Merge with strategy %s failed.\n"),
1747 use_strategies
[0]->name
);
1748 apply_autostash(git_path_merge_autostash(the_repository
));
1751 } else if (best_strategy
== wt_strategy
)
1752 ; /* We already have its result in the working tree. */
1754 printf(_("Rewinding the tree to pristine...\n"));
1755 restore_state(&head_commit
->object
.oid
, &stash
);
1756 printf(_("Using the %s strategy to prepare resolving by hand.\n"),
1758 try_merge_strategy(best_strategy
, common
, remoteheads
,
1763 finish(head_commit
, remoteheads
, NULL
, NULL
);
1765 git_test_write_commit_graph_or_die();
1767 write_merge_state(remoteheads
);
1770 fprintf(stderr
, _("Automatic merge went well; "
1771 "stopped before committing as requested\n"));
1773 ret
= suggest_conflicts();
1775 printf(_("When finished, apply stashed changes with `git stash pop`\n"));
1778 if (!automerge_was_ok
) {
1779 free_commit_list(common
);
1780 free_commit_list(remoteheads
);
1782 strbuf_release(&buf
);
1783 free(branch_to_free
);
1784 discard_index(&the_index
);