4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
9 #define USE_THE_INDEX_COMPATIBILITY_MACROS
12 #include "parse-options.h"
15 #include "run-command.h"
22 #include "unpack-trees.h"
23 #include "cache-tree.h"
30 #include "merge-recursive.h"
31 #include "resolve-undo.h"
33 #include "fmt-merge-msg.h"
34 #include "gpg-interface.h"
35 #include "sequencer.h"
36 #include "string-list.h"
40 #include "commit-reach.h"
42 #define DEFAULT_TWOHEAD (1<<0)
43 #define DEFAULT_OCTOPUS (1<<1)
44 #define NO_FAST_FORWARD (1<<2)
45 #define NO_TRIVIAL (1<<3)
52 static const char * const builtin_merge_usage
[] = {
53 N_("git merge [<options>] [<commit>...]"),
54 N_("git merge --abort"),
55 N_("git merge --continue"),
59 static int show_diffstat
= 1, shortlog_len
= -1, squash
;
60 static int option_commit
= 1;
61 static int option_edit
= -1;
62 static int allow_trivial
= 1, have_message
, verify_signatures
;
63 static int overwrite_ignore
= 1;
64 static struct strbuf merge_msg
= STRBUF_INIT
;
65 static struct strategy
**use_strategies
;
66 static size_t use_strategies_nr
, use_strategies_alloc
;
67 static const char **xopts
;
68 static size_t xopts_nr
, xopts_alloc
;
69 static const char *branch
;
70 static char *branch_mergeoptions
;
71 static int option_renormalize
;
73 static int allow_rerere_auto
;
74 static int abort_current_merge
;
75 static int continue_current_merge
;
76 static int allow_unrelated_histories
;
77 static int show_progress
= -1;
78 static int default_to_upstream
= 1;
80 static const char *sign_commit
;
81 static int verify_msg
= 1;
83 static struct strategy all_strategy
[] = {
84 { "recursive", DEFAULT_TWOHEAD
| NO_TRIVIAL
},
85 { "octopus", DEFAULT_OCTOPUS
},
87 { "ours", NO_FAST_FORWARD
| NO_TRIVIAL
},
88 { "subtree", NO_FAST_FORWARD
| NO_TRIVIAL
},
91 static const char *pull_twohead
, *pull_octopus
;
99 static enum ff_type fast_forward
= FF_ALLOW
;
101 static int option_parse_message(const struct option
*opt
,
102 const char *arg
, int unset
)
104 struct strbuf
*buf
= opt
->value
;
107 strbuf_setlen(buf
, 0);
109 strbuf_addf(buf
, "%s%s", buf
->len
? "\n\n" : "", arg
);
112 return error(_("switch `m' requires a value"));
116 static enum parse_opt_result
option_read_message(struct parse_opt_ctx_t
*ctx
,
117 const struct option
*opt
,
118 const char *arg_not_used
,
121 struct strbuf
*buf
= opt
->value
;
124 BUG_ON_OPT_ARG(arg_not_used
);
126 BUG("-F cannot be negated");
131 } else if (ctx
->argc
> 1) {
135 return error(_("option `%s' requires a value"), opt
->long_name
);
138 strbuf_addch(buf
, '\n');
139 if (ctx
->prefix
&& !is_absolute_path(arg
))
140 arg
= prefix_filename(ctx
->prefix
, arg
);
141 if (strbuf_read_file(buf
, arg
, 0) < 0)
142 return error(_("could not read file '%s'"), arg
);
148 static struct strategy
*get_strategy(const char *name
)
151 struct strategy
*ret
;
152 static struct cmdnames main_cmds
, other_cmds
;
158 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
159 if (!strcmp(name
, all_strategy
[i
].name
))
160 return &all_strategy
[i
];
163 struct cmdnames not_strategies
;
166 memset(¬_strategies
, 0, sizeof(struct cmdnames
));
167 load_command_list("git-merge-", &main_cmds
, &other_cmds
);
168 for (i
= 0; i
< main_cmds
.cnt
; i
++) {
170 struct cmdname
*ent
= main_cmds
.names
[i
];
171 for (j
= 0; j
< ARRAY_SIZE(all_strategy
); j
++)
172 if (!strncmp(ent
->name
, all_strategy
[j
].name
, ent
->len
)
173 && !all_strategy
[j
].name
[ent
->len
])
176 add_cmdname(¬_strategies
, ent
->name
, ent
->len
);
178 exclude_cmds(&main_cmds
, ¬_strategies
);
180 if (!is_in_cmdlist(&main_cmds
, name
) && !is_in_cmdlist(&other_cmds
, name
)) {
181 fprintf(stderr
, _("Could not find merge strategy '%s'.\n"), name
);
182 fprintf(stderr
, _("Available strategies are:"));
183 for (i
= 0; i
< main_cmds
.cnt
; i
++)
184 fprintf(stderr
, " %s", main_cmds
.names
[i
]->name
);
185 fprintf(stderr
, ".\n");
186 if (other_cmds
.cnt
) {
187 fprintf(stderr
, _("Available custom strategies are:"));
188 for (i
= 0; i
< other_cmds
.cnt
; i
++)
189 fprintf(stderr
, " %s", other_cmds
.names
[i
]->name
);
190 fprintf(stderr
, ".\n");
195 ret
= xcalloc(1, sizeof(struct strategy
));
196 ret
->name
= xstrdup(name
);
197 ret
->attr
= NO_TRIVIAL
;
201 static void append_strategy(struct strategy
*s
)
203 ALLOC_GROW(use_strategies
, use_strategies_nr
+ 1, use_strategies_alloc
);
204 use_strategies
[use_strategies_nr
++] = s
;
207 static int option_parse_strategy(const struct option
*opt
,
208 const char *name
, int unset
)
213 append_strategy(get_strategy(name
));
217 static int option_parse_x(const struct option
*opt
,
218 const char *arg
, int unset
)
223 ALLOC_GROW(xopts
, xopts_nr
+ 1, xopts_alloc
);
224 xopts
[xopts_nr
++] = xstrdup(arg
);
228 static int option_parse_n(const struct option
*opt
,
229 const char *arg
, int unset
)
232 show_diffstat
= unset
;
236 static struct option builtin_merge_options
[] = {
237 { OPTION_CALLBACK
, 'n', NULL
, NULL
, NULL
,
238 N_("do not show a diffstat at the end of the merge"),
239 PARSE_OPT_NOARG
, option_parse_n
},
240 OPT_BOOL(0, "stat", &show_diffstat
,
241 N_("show a diffstat at the end of the merge")),
242 OPT_BOOL(0, "summary", &show_diffstat
, N_("(synonym to --stat)")),
243 { OPTION_INTEGER
, 0, "log", &shortlog_len
, N_("n"),
244 N_("add (at most <n>) entries from shortlog to merge commit message"),
245 PARSE_OPT_OPTARG
, NULL
, DEFAULT_MERGE_LOG_LEN
},
246 OPT_BOOL(0, "squash", &squash
,
247 N_("create a single commit instead of doing a merge")),
248 OPT_BOOL(0, "commit", &option_commit
,
249 N_("perform a commit if the merge succeeds (default)")),
250 OPT_BOOL('e', "edit", &option_edit
,
251 N_("edit message before committing")),
252 OPT_SET_INT(0, "ff", &fast_forward
, N_("allow fast-forward (default)"), FF_ALLOW
),
253 OPT_SET_INT_F(0, "ff-only", &fast_forward
,
254 N_("abort if fast-forward is not possible"),
255 FF_ONLY
, PARSE_OPT_NONEG
),
256 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
257 OPT_BOOL(0, "verify-signatures", &verify_signatures
,
258 N_("verify that the named commit has a valid GPG signature")),
259 OPT_CALLBACK('s', "strategy", &use_strategies
, N_("strategy"),
260 N_("merge strategy to use"), option_parse_strategy
),
261 OPT_CALLBACK('X', "strategy-option", &xopts
, N_("option=value"),
262 N_("option for selected merge strategy"), option_parse_x
),
263 OPT_CALLBACK('m', "message", &merge_msg
, N_("message"),
264 N_("merge commit message (for a non-fast-forward merge)"),
265 option_parse_message
),
266 { OPTION_LOWLEVEL_CALLBACK
, 'F', "file", &merge_msg
, N_("path"),
267 N_("read message from file"), PARSE_OPT_NONEG
,
268 NULL
, 0, option_read_message
},
269 OPT__VERBOSITY(&verbosity
),
270 OPT_BOOL(0, "abort", &abort_current_merge
,
271 N_("abort the current in-progress merge")),
272 OPT_BOOL(0, "continue", &continue_current_merge
,
273 N_("continue the current in-progress merge")),
274 OPT_BOOL(0, "allow-unrelated-histories", &allow_unrelated_histories
,
275 N_("allow merging unrelated histories")),
276 OPT_SET_INT(0, "progress", &show_progress
, N_("force progress reporting"), 1),
277 { OPTION_STRING
, 'S', "gpg-sign", &sign_commit
, N_("key-id"),
278 N_("GPG sign commit"), PARSE_OPT_OPTARG
, NULL
, (intptr_t) "" },
279 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore
, N_("update ignored files (default)")),
280 OPT_BOOL(0, "signoff", &signoff
, N_("add Signed-off-by:")),
281 OPT_BOOL(0, "verify", &verify_msg
, N_("verify commit-msg hook")),
285 /* Cleans up metadata that is uninteresting after a succeeded merge. */
286 static void drop_save(void)
288 unlink(git_path_merge_head(the_repository
));
289 unlink(git_path_merge_msg(the_repository
));
290 unlink(git_path_merge_mode(the_repository
));
293 static int save_state(struct object_id
*stash
)
296 struct child_process cp
= CHILD_PROCESS_INIT
;
297 struct strbuf buffer
= STRBUF_INIT
;
298 const char *argv
[] = {"stash", "create", NULL
};
305 if (start_command(&cp
))
306 die(_("could not run stash."));
307 len
= strbuf_read(&buffer
, cp
.out
, 1024);
310 if (finish_command(&cp
) || len
< 0)
311 die(_("stash failed"));
312 else if (!len
) /* no changes */
314 strbuf_setlen(&buffer
, buffer
.len
-1);
315 if (get_oid(buffer
.buf
, stash
))
316 die(_("not a valid object: %s"), buffer
.buf
);
319 strbuf_release(&buffer
);
323 static void read_empty(const struct object_id
*oid
, int verbose
)
328 args
[i
++] = "read-tree";
333 args
[i
++] = empty_tree_oid_hex();
334 args
[i
++] = oid_to_hex(oid
);
337 if (run_command_v_opt(args
, RUN_GIT_CMD
))
338 die(_("read-tree failed"));
341 static void reset_hard(const struct object_id
*oid
, int verbose
)
346 args
[i
++] = "read-tree";
349 args
[i
++] = "--reset";
351 args
[i
++] = oid_to_hex(oid
);
354 if (run_command_v_opt(args
, RUN_GIT_CMD
))
355 die(_("read-tree failed"));
358 static void restore_state(const struct object_id
*head
,
359 const struct object_id
*stash
)
361 struct strbuf sb
= STRBUF_INIT
;
362 const char *args
[] = { "stash", "apply", NULL
, NULL
};
364 if (is_null_oid(stash
))
369 args
[2] = oid_to_hex(stash
);
372 * It is OK to ignore error here, for example when there was
373 * nothing to restore.
375 run_command_v_opt(args
, RUN_GIT_CMD
);
378 refresh_cache(REFRESH_QUIET
);
381 /* This is called when no merge was necessary. */
382 static void finish_up_to_date(const char *msg
)
385 printf("%s%s\n", squash
? _(" (nothing to squash)") : "", msg
);
389 static void squash_message(struct commit
*commit
, struct commit_list
*remoteheads
)
392 struct strbuf out
= STRBUF_INIT
;
393 struct commit_list
*j
;
394 struct pretty_print_context ctx
= {0};
396 printf(_("Squash commit -- not updating HEAD\n"));
398 repo_init_revisions(the_repository
, &rev
, NULL
);
399 rev
.ignore_merges
= 1;
400 rev
.commit_format
= CMIT_FMT_MEDIUM
;
402 commit
->object
.flags
|= UNINTERESTING
;
403 add_pending_object(&rev
, &commit
->object
, NULL
);
405 for (j
= remoteheads
; j
; j
= j
->next
)
406 add_pending_object(&rev
, &j
->item
->object
, NULL
);
408 setup_revisions(0, NULL
, &rev
, NULL
);
409 if (prepare_revision_walk(&rev
))
410 die(_("revision walk setup failed"));
412 ctx
.abbrev
= rev
.abbrev
;
413 ctx
.date_mode
= rev
.date_mode
;
414 ctx
.fmt
= rev
.commit_format
;
416 strbuf_addstr(&out
, "Squashed commit of the following:\n");
417 while ((commit
= get_revision(&rev
)) != NULL
) {
418 strbuf_addch(&out
, '\n');
419 strbuf_addf(&out
, "commit %s\n",
420 oid_to_hex(&commit
->object
.oid
));
421 pretty_print_commit(&ctx
, commit
, &out
);
423 write_file_buf(git_path_squash_msg(the_repository
), out
.buf
, out
.len
);
424 strbuf_release(&out
);
427 static void finish(struct commit
*head_commit
,
428 struct commit_list
*remoteheads
,
429 const struct object_id
*new_head
, const char *msg
)
431 struct strbuf reflog_message
= STRBUF_INIT
;
432 const struct object_id
*head
= &head_commit
->object
.oid
;
435 strbuf_addstr(&reflog_message
, getenv("GIT_REFLOG_ACTION"));
439 strbuf_addf(&reflog_message
, "%s: %s",
440 getenv("GIT_REFLOG_ACTION"), msg
);
443 squash_message(head_commit
, remoteheads
);
445 if (verbosity
>= 0 && !merge_msg
.len
)
446 printf(_("No merge message -- not updating HEAD\n"));
448 const char *argv_gc_auto
[] = { "gc", "--auto", NULL
};
449 update_ref(reflog_message
.buf
, "HEAD", new_head
, head
,
450 0, UPDATE_REFS_DIE_ON_ERR
);
452 * We ignore errors in 'gc --auto', since the
453 * user should see them.
455 close_all_packs(the_repository
->objects
);
456 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
459 if (new_head
&& show_diffstat
) {
460 struct diff_options opts
;
461 repo_diff_setup(the_repository
, &opts
);
462 opts
.stat_width
= -1; /* use full terminal width */
463 opts
.stat_graph_width
= -1; /* respect statGraphWidth config */
464 opts
.output_format
|=
465 DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
466 opts
.detect_rename
= DIFF_DETECT_RENAME
;
467 diff_setup_done(&opts
);
468 diff_tree_oid(head
, new_head
, "", &opts
);
473 /* Run a post-merge hook */
474 run_hook_le(NULL
, "post-merge", squash
? "1" : "0", NULL
);
476 strbuf_release(&reflog_message
);
479 /* Get the name for the merge commit's message. */
480 static void merge_name(const char *remote
, struct strbuf
*msg
)
482 struct commit
*remote_head
;
483 struct object_id branch_head
;
484 struct strbuf buf
= STRBUF_INIT
;
485 struct strbuf bname
= STRBUF_INIT
;
486 struct merge_remote_desc
*desc
;
491 strbuf_branchname(&bname
, remote
, 0);
494 oidclr(&branch_head
);
495 remote_head
= get_merge_parent(remote
);
497 die(_("'%s' does not point to a commit"), remote
);
499 if (dwim_ref(remote
, strlen(remote
), &branch_head
, &found_ref
) > 0) {
500 if (starts_with(found_ref
, "refs/heads/")) {
501 strbuf_addf(msg
, "%s\t\tbranch '%s' of .\n",
502 oid_to_hex(&branch_head
), remote
);
505 if (starts_with(found_ref
, "refs/tags/")) {
506 strbuf_addf(msg
, "%s\t\ttag '%s' of .\n",
507 oid_to_hex(&branch_head
), remote
);
510 if (starts_with(found_ref
, "refs/remotes/")) {
511 strbuf_addf(msg
, "%s\t\tremote-tracking branch '%s' of .\n",
512 oid_to_hex(&branch_head
), remote
);
517 /* See if remote matches <name>^^^.. or <name>~<number> */
518 for (len
= 0, ptr
= remote
+ strlen(remote
);
519 remote
< ptr
&& ptr
[-1] == '^';
526 ptr
= strrchr(remote
, '~');
528 int seen_nonzero
= 0;
531 while (*++ptr
&& isdigit(*ptr
)) {
532 seen_nonzero
|= (*ptr
!= '0');
536 len
= 0; /* not ...~<number> */
537 else if (seen_nonzero
)
540 early
= 1; /* "name~" is "name~1"! */
544 struct strbuf truname
= STRBUF_INIT
;
545 strbuf_addf(&truname
, "refs/heads/%s", remote
);
546 strbuf_setlen(&truname
, truname
.len
- len
);
547 if (ref_exists(truname
.buf
)) {
549 "%s\t\tbranch '%s'%s of .\n",
550 oid_to_hex(&remote_head
->object
.oid
),
552 (early
? " (early part)" : ""));
553 strbuf_release(&truname
);
556 strbuf_release(&truname
);
559 desc
= merge_remote_util(remote_head
);
560 if (desc
&& desc
->obj
&& desc
->obj
->type
== OBJ_TAG
) {
561 strbuf_addf(msg
, "%s\t\t%s '%s'\n",
562 oid_to_hex(&desc
->obj
->oid
),
563 type_name(desc
->obj
->type
),
568 strbuf_addf(msg
, "%s\t\tcommit '%s'\n",
569 oid_to_hex(&remote_head
->object
.oid
), remote
);
571 strbuf_release(&buf
);
572 strbuf_release(&bname
);
575 static void parse_branch_merge_options(char *bmo
)
582 argc
= split_cmdline(bmo
, &argv
);
584 die(_("Bad branch.%s.mergeoptions string: %s"), branch
,
585 _(split_cmdline_strerror(argc
)));
586 REALLOC_ARRAY(argv
, argc
+ 2);
587 MOVE_ARRAY(argv
+ 1, argv
, argc
+ 1);
589 argv
[0] = "branch.*.mergeoptions";
590 parse_options(argc
, argv
, NULL
, builtin_merge_options
,
591 builtin_merge_usage
, 0);
595 static int git_merge_config(const char *k
, const char *v
, void *cb
)
599 if (branch
&& starts_with(k
, "branch.") &&
600 starts_with(k
+ 7, branch
) &&
601 !strcmp(k
+ 7 + strlen(branch
), ".mergeoptions")) {
602 free(branch_mergeoptions
);
603 branch_mergeoptions
= xstrdup(v
);
607 if (!strcmp(k
, "merge.diffstat") || !strcmp(k
, "merge.stat"))
608 show_diffstat
= git_config_bool(k
, v
);
609 else if (!strcmp(k
, "merge.verifysignatures"))
610 verify_signatures
= git_config_bool(k
, v
);
611 else if (!strcmp(k
, "pull.twohead"))
612 return git_config_string(&pull_twohead
, k
, v
);
613 else if (!strcmp(k
, "pull.octopus"))
614 return git_config_string(&pull_octopus
, k
, v
);
615 else if (!strcmp(k
, "merge.renormalize"))
616 option_renormalize
= git_config_bool(k
, v
);
617 else if (!strcmp(k
, "merge.ff")) {
618 int boolval
= git_parse_maybe_bool(v
);
620 fast_forward
= boolval
? FF_ALLOW
: FF_NO
;
621 } else if (v
&& !strcmp(v
, "only")) {
622 fast_forward
= FF_ONLY
;
623 } /* do not barf on values from future versions of git */
625 } else if (!strcmp(k
, "merge.defaulttoupstream")) {
626 default_to_upstream
= git_config_bool(k
, v
);
628 } else if (!strcmp(k
, "commit.gpgsign")) {
629 sign_commit
= git_config_bool(k
, v
) ? "" : NULL
;
633 status
= fmt_merge_msg_config(k
, v
, cb
);
636 status
= git_gpg_config(k
, v
, NULL
);
639 return git_diff_ui_config(k
, v
, cb
);
642 static int read_tree_trivial(struct object_id
*common
, struct object_id
*head
,
643 struct object_id
*one
)
646 struct tree
*trees
[MAX_UNPACK_TREES
];
647 struct tree_desc t
[MAX_UNPACK_TREES
];
648 struct unpack_trees_options opts
;
650 memset(&opts
, 0, sizeof(opts
));
652 opts
.src_index
= &the_index
;
653 opts
.dst_index
= &the_index
;
655 opts
.verbose_update
= 1;
656 opts
.trivial_merges_only
= 1;
658 trees
[nr_trees
] = parse_tree_indirect(common
);
659 if (!trees
[nr_trees
++])
661 trees
[nr_trees
] = parse_tree_indirect(head
);
662 if (!trees
[nr_trees
++])
664 trees
[nr_trees
] = parse_tree_indirect(one
);
665 if (!trees
[nr_trees
++])
667 opts
.fn
= threeway_merge
;
668 cache_tree_free(&active_cache_tree
);
669 for (i
= 0; i
< nr_trees
; i
++) {
670 parse_tree(trees
[i
]);
671 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
673 if (unpack_trees(nr_trees
, t
, &opts
))
678 static void write_tree_trivial(struct object_id
*oid
)
680 if (write_cache_as_tree(oid
, 0, NULL
))
681 die(_("git write-tree failed to write a tree"));
684 static int try_merge_strategy(const char *strategy
, struct commit_list
*common
,
685 struct commit_list
*remoteheads
,
688 struct lock_file lock
= LOCK_INIT
;
689 const char *head_arg
= "HEAD";
691 hold_locked_index(&lock
, LOCK_DIE_ON_ERROR
);
692 refresh_cache(REFRESH_QUIET
);
693 if (write_locked_index(&the_index
, &lock
,
694 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
695 return error(_("Unable to write index."));
697 if (!strcmp(strategy
, "recursive") || !strcmp(strategy
, "subtree")) {
699 struct commit
*result
;
700 struct commit_list
*reversed
= NULL
;
701 struct merge_options o
;
702 struct commit_list
*j
;
704 if (remoteheads
->next
) {
705 error(_("Not handling anything other than two heads merge."));
709 init_merge_options(&o
, the_repository
);
710 if (!strcmp(strategy
, "subtree"))
711 o
.subtree_shift
= "";
713 o
.renormalize
= option_renormalize
;
714 o
.show_rename_progress
=
715 show_progress
== -1 ? isatty(2) : show_progress
;
717 for (x
= 0; x
< xopts_nr
; x
++)
718 if (parse_merge_opt(&o
, xopts
[x
]))
719 die(_("Unknown option for merge-recursive: -X%s"), xopts
[x
]);
721 o
.branch1
= head_arg
;
722 o
.branch2
= merge_remote_util(remoteheads
->item
)->name
;
724 for (j
= common
; j
; j
= j
->next
)
725 commit_list_insert(j
->item
, &reversed
);
727 hold_locked_index(&lock
, LOCK_DIE_ON_ERROR
);
728 clean
= merge_recursive(&o
, head
,
729 remoteheads
->item
, reversed
, &result
);
732 if (write_locked_index(&the_index
, &lock
,
733 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
734 die(_("unable to write %s"), get_index_file());
735 return clean
? 0 : 1;
737 return try_merge_command(the_repository
,
738 strategy
, xopts_nr
, xopts
,
739 common
, head_arg
, remoteheads
);
743 static void count_diff_files(struct diff_queue_struct
*q
,
744 struct diff_options
*opt
, void *data
)
751 static int count_unmerged_entries(void)
755 for (i
= 0; i
< active_nr
; i
++)
756 if (ce_stage(active_cache
[i
]))
762 static void add_strategies(const char *string
, unsigned attr
)
767 struct string_list list
= STRING_LIST_INIT_DUP
;
768 struct string_list_item
*item
;
769 string_list_split(&list
, string
, ' ', -1);
770 for_each_string_list_item(item
, &list
)
771 append_strategy(get_strategy(item
->string
));
772 string_list_clear(&list
, 0);
775 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
776 if (all_strategy
[i
].attr
& attr
)
777 append_strategy(&all_strategy
[i
]);
781 static void read_merge_msg(struct strbuf
*msg
)
783 const char *filename
= git_path_merge_msg(the_repository
);
785 if (strbuf_read_file(msg
, filename
, 0) < 0)
786 die_errno(_("Could not read from '%s'"), filename
);
789 static void write_merge_state(struct commit_list
*);
790 static void abort_commit(struct commit_list
*remoteheads
, const char *err_msg
)
793 error("%s", err_msg
);
795 _("Not committing merge; use 'git commit' to complete the merge.\n"));
796 write_merge_state(remoteheads
);
800 static const char merge_editor_comment
[] =
801 N_("Please enter a commit message to explain why this merge is necessary,\n"
802 "especially if it merges an updated upstream into a topic branch.\n"
804 "Lines starting with '%c' will be ignored, and an empty message aborts\n"
807 static void write_merge_heads(struct commit_list
*);
808 static void prepare_to_commit(struct commit_list
*remoteheads
)
810 struct strbuf msg
= STRBUF_INIT
;
811 strbuf_addbuf(&msg
, &merge_msg
);
812 strbuf_addch(&msg
, '\n');
814 BUG("the control must not reach here under --squash");
816 strbuf_commented_addf(&msg
, _(merge_editor_comment
), comment_line_char
);
818 append_signoff(&msg
, ignore_non_trailer(msg
.buf
, msg
.len
), 0);
819 write_merge_heads(remoteheads
);
820 write_file_buf(git_path_merge_msg(the_repository
), msg
.buf
, msg
.len
);
821 if (run_commit_hook(0 < option_edit
, get_index_file(), "prepare-commit-msg",
822 git_path_merge_msg(the_repository
), "merge", NULL
))
823 abort_commit(remoteheads
, NULL
);
824 if (0 < option_edit
) {
825 if (launch_editor(git_path_merge_msg(the_repository
), NULL
, NULL
))
826 abort_commit(remoteheads
, NULL
);
829 if (verify_msg
&& run_commit_hook(0 < option_edit
, get_index_file(),
831 git_path_merge_msg(the_repository
), NULL
))
832 abort_commit(remoteheads
, NULL
);
834 read_merge_msg(&msg
);
835 strbuf_stripspace(&msg
, 0 < option_edit
);
837 abort_commit(remoteheads
, _("Empty commit message."));
838 strbuf_release(&merge_msg
);
839 strbuf_addbuf(&merge_msg
, &msg
);
840 strbuf_release(&msg
);
843 static int merge_trivial(struct commit
*head
, struct commit_list
*remoteheads
)
845 struct object_id result_tree
, result_commit
;
846 struct commit_list
*parents
, **pptr
= &parents
;
847 struct lock_file lock
= LOCK_INIT
;
849 hold_locked_index(&lock
, LOCK_DIE_ON_ERROR
);
850 refresh_cache(REFRESH_QUIET
);
851 if (write_locked_index(&the_index
, &lock
,
852 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
853 return error(_("Unable to write index."));
855 write_tree_trivial(&result_tree
);
856 printf(_("Wonderful.\n"));
857 pptr
= commit_list_append(head
, pptr
);
858 pptr
= commit_list_append(remoteheads
->item
, pptr
);
859 prepare_to_commit(remoteheads
);
860 if (commit_tree(merge_msg
.buf
, merge_msg
.len
, &result_tree
, parents
,
861 &result_commit
, NULL
, sign_commit
))
862 die(_("failed to write commit object"));
863 finish(head
, remoteheads
, &result_commit
, "In-index merge");
868 static int finish_automerge(struct commit
*head
,
870 struct commit_list
*common
,
871 struct commit_list
*remoteheads
,
872 struct object_id
*result_tree
,
873 const char *wt_strategy
)
875 struct commit_list
*parents
= NULL
;
876 struct strbuf buf
= STRBUF_INIT
;
877 struct object_id result_commit
;
879 free_commit_list(common
);
880 parents
= remoteheads
;
881 if (!head_subsumed
|| fast_forward
== FF_NO
)
882 commit_list_insert(head
, &parents
);
883 strbuf_addch(&merge_msg
, '\n');
884 prepare_to_commit(remoteheads
);
885 if (commit_tree(merge_msg
.buf
, merge_msg
.len
, result_tree
, parents
,
886 &result_commit
, NULL
, sign_commit
))
887 die(_("failed to write commit object"));
888 strbuf_addf(&buf
, "Merge made by the '%s' strategy.", wt_strategy
);
889 finish(head
, remoteheads
, &result_commit
, buf
.buf
);
890 strbuf_release(&buf
);
895 static int suggest_conflicts(void)
897 const char *filename
;
899 struct strbuf msgbuf
= STRBUF_INIT
;
901 filename
= git_path_merge_msg(the_repository
);
902 fp
= xfopen(filename
, "a");
904 append_conflicts_hint(&the_index
, &msgbuf
);
905 fputs(msgbuf
.buf
, fp
);
906 strbuf_release(&msgbuf
);
908 repo_rerere(the_repository
, allow_rerere_auto
);
909 printf(_("Automatic merge failed; "
910 "fix conflicts and then commit the result.\n"));
914 static int evaluate_result(void)
919 /* Check how many files differ. */
920 repo_init_revisions(the_repository
, &rev
, "");
921 setup_revisions(0, NULL
, &rev
, NULL
);
922 rev
.diffopt
.output_format
|=
923 DIFF_FORMAT_CALLBACK
;
924 rev
.diffopt
.format_callback
= count_diff_files
;
925 rev
.diffopt
.format_callback_data
= &cnt
;
926 run_diff_files(&rev
, 0);
929 * Check how many unmerged entries are
932 cnt
+= count_unmerged_entries();
938 * Pretend as if the user told us to merge with the remote-tracking
939 * branch we have for the upstream of the current branch
941 static int setup_with_upstream(const char ***argv
)
943 struct branch
*branch
= branch_get(NULL
);
948 die(_("No current branch."));
949 if (!branch
->remote_name
)
950 die(_("No remote for the current branch."));
951 if (!branch
->merge_nr
)
952 die(_("No default upstream defined for the current branch."));
954 args
= xcalloc(st_add(branch
->merge_nr
, 1), sizeof(char *));
955 for (i
= 0; i
< branch
->merge_nr
; i
++) {
956 if (!branch
->merge
[i
]->dst
)
957 die(_("No remote-tracking branch for %s from %s"),
958 branch
->merge
[i
]->src
, branch
->remote_name
);
959 args
[i
] = branch
->merge
[i
]->dst
;
966 static void write_merge_heads(struct commit_list
*remoteheads
)
968 struct commit_list
*j
;
969 struct strbuf buf
= STRBUF_INIT
;
971 for (j
= remoteheads
; j
; j
= j
->next
) {
972 struct object_id
*oid
;
973 struct commit
*c
= j
->item
;
974 struct merge_remote_desc
*desc
;
976 desc
= merge_remote_util(c
);
977 if (desc
&& desc
->obj
) {
978 oid
= &desc
->obj
->oid
;
980 oid
= &c
->object
.oid
;
982 strbuf_addf(&buf
, "%s\n", oid_to_hex(oid
));
984 write_file_buf(git_path_merge_head(the_repository
), buf
.buf
, buf
.len
);
987 if (fast_forward
== FF_NO
)
988 strbuf_addstr(&buf
, "no-ff");
989 write_file_buf(git_path_merge_mode(the_repository
), buf
.buf
, buf
.len
);
990 strbuf_release(&buf
);
993 static void write_merge_state(struct commit_list
*remoteheads
)
995 write_merge_heads(remoteheads
);
996 strbuf_addch(&merge_msg
, '\n');
997 write_file_buf(git_path_merge_msg(the_repository
), merge_msg
.buf
,
1001 static int default_edit_option(void)
1003 static const char name
[] = "GIT_MERGE_AUTOEDIT";
1004 const char *e
= getenv(name
);
1005 struct stat st_stdin
, st_stdout
;
1008 /* an explicit -m msg without --[no-]edit */
1012 int v
= git_parse_maybe_bool(e
);
1014 die(_("Bad value '%s' in environment '%s'"), e
, name
);
1018 /* Use editor if stdin and stdout are the same and is a tty */
1019 return (!fstat(0, &st_stdin
) &&
1020 !fstat(1, &st_stdout
) &&
1021 isatty(0) && isatty(1) &&
1022 st_stdin
.st_dev
== st_stdout
.st_dev
&&
1023 st_stdin
.st_ino
== st_stdout
.st_ino
&&
1024 st_stdin
.st_mode
== st_stdout
.st_mode
);
1027 static struct commit_list
*reduce_parents(struct commit
*head_commit
,
1029 struct commit_list
*remoteheads
)
1031 struct commit_list
*parents
, **remotes
;
1034 * Is the current HEAD reachable from another commit being
1035 * merged? If so we do not want to record it as a parent of
1036 * the resulting merge, unless --no-ff is given. We will flip
1037 * this variable to 0 when we find HEAD among the independent
1038 * tips being merged.
1042 /* Find what parents to record by checking independent ones. */
1043 parents
= reduce_heads(remoteheads
);
1044 free_commit_list(remoteheads
);
1047 remotes
= &remoteheads
;
1049 struct commit
*commit
= pop_commit(&parents
);
1050 if (commit
== head_commit
)
1053 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1058 static void prepare_merge_message(struct strbuf
*merge_names
, struct strbuf
*merge_msg
)
1060 struct fmt_merge_msg_opts opts
;
1062 memset(&opts
, 0, sizeof(opts
));
1063 opts
.add_title
= !have_message
;
1064 opts
.shortlog_len
= shortlog_len
;
1065 opts
.credit_people
= (0 < option_edit
);
1067 fmt_merge_msg(merge_names
, merge_msg
, &opts
);
1069 strbuf_setlen(merge_msg
, merge_msg
->len
- 1);
1072 static void handle_fetch_head(struct commit_list
**remotes
, struct strbuf
*merge_names
)
1074 const char *filename
;
1076 struct strbuf fetch_head_file
= STRBUF_INIT
;
1077 const unsigned hexsz
= the_hash_algo
->hexsz
;
1080 merge_names
= &fetch_head_file
;
1082 filename
= git_path_fetch_head(the_repository
);
1083 fd
= open(filename
, O_RDONLY
);
1085 die_errno(_("could not open '%s' for reading"), filename
);
1087 if (strbuf_read(merge_names
, fd
, 0) < 0)
1088 die_errno(_("could not read '%s'"), filename
);
1090 die_errno(_("could not close '%s'"), filename
);
1092 for (pos
= 0; pos
< merge_names
->len
; pos
= npos
) {
1093 struct object_id oid
;
1095 struct commit
*commit
;
1097 ptr
= strchr(merge_names
->buf
+ pos
, '\n');
1099 npos
= ptr
- merge_names
->buf
+ 1;
1101 npos
= merge_names
->len
;
1103 if (npos
- pos
< hexsz
+ 2 ||
1104 get_oid_hex(merge_names
->buf
+ pos
, &oid
))
1105 commit
= NULL
; /* bad */
1106 else if (memcmp(merge_names
->buf
+ pos
+ hexsz
, "\t\t", 2))
1107 continue; /* not-for-merge */
1109 char saved
= merge_names
->buf
[pos
+ hexsz
];
1110 merge_names
->buf
[pos
+ hexsz
] = '\0';
1111 commit
= get_merge_parent(merge_names
->buf
+ pos
);
1112 merge_names
->buf
[pos
+ hexsz
] = saved
;
1117 die(_("not something we can merge in %s: %s"),
1118 filename
, merge_names
->buf
+ pos
);
1120 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1123 if (merge_names
== &fetch_head_file
)
1124 strbuf_release(&fetch_head_file
);
1127 static struct commit_list
*collect_parents(struct commit
*head_commit
,
1129 int argc
, const char **argv
,
1130 struct strbuf
*merge_msg
)
1133 struct commit_list
*remoteheads
= NULL
;
1134 struct commit_list
**remotes
= &remoteheads
;
1135 struct strbuf merge_names
= STRBUF_INIT
, *autogen
= NULL
;
1137 if (merge_msg
&& (!have_message
|| shortlog_len
))
1138 autogen
= &merge_names
;
1141 remotes
= &commit_list_insert(head_commit
, remotes
)->next
;
1143 if (argc
== 1 && !strcmp(argv
[0], "FETCH_HEAD")) {
1144 handle_fetch_head(remotes
, autogen
);
1145 remoteheads
= reduce_parents(head_commit
, head_subsumed
, remoteheads
);
1147 for (i
= 0; i
< argc
; i
++) {
1148 struct commit
*commit
= get_merge_parent(argv
[i
]);
1150 help_unknown_ref(argv
[i
], "merge",
1151 _("not something we can merge"));
1152 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1154 remoteheads
= reduce_parents(head_commit
, head_subsumed
, remoteheads
);
1156 struct commit_list
*p
;
1157 for (p
= remoteheads
; p
; p
= p
->next
)
1158 merge_name(merge_remote_util(p
->item
)->name
, autogen
);
1163 prepare_merge_message(autogen
, merge_msg
);
1164 strbuf_release(autogen
);
1170 static int merging_a_throwaway_tag(struct commit
*commit
)
1173 struct object_id oid
;
1174 int is_throwaway_tag
= 0;
1176 /* Are we merging a tag? */
1177 if (!merge_remote_util(commit
) ||
1178 !merge_remote_util(commit
)->obj
||
1179 merge_remote_util(commit
)->obj
->type
!= OBJ_TAG
)
1180 return is_throwaway_tag
;
1183 * Now we know we are merging a tag object. Are we downstream
1184 * and following the tags from upstream? If so, we must have
1185 * the tag object pointed at by "refs/tags/$T" where $T is the
1186 * tagname recorded in the tag object. We want to allow such
1187 * a "just to catch up" merge to fast-forward.
1189 * Otherwise, we are playing an integrator's role, making a
1190 * merge with a throw-away tag from a contributor with
1191 * something like "git pull $contributor $signed_tag".
1192 * We want to forbid such a merge from fast-forwarding
1193 * by default; otherwise we would not keep the signature
1196 tag_ref
= xstrfmt("refs/tags/%s",
1197 ((struct tag
*)merge_remote_util(commit
)->obj
)->tag
);
1198 if (!read_ref(tag_ref
, &oid
) &&
1199 oideq(&oid
, &merge_remote_util(commit
)->obj
->oid
))
1200 is_throwaway_tag
= 0;
1202 is_throwaway_tag
= 1;
1204 return is_throwaway_tag
;
1207 int cmd_merge(int argc
, const char **argv
, const char *prefix
)
1209 struct object_id result_tree
, stash
, head_oid
;
1210 struct commit
*head_commit
;
1211 struct strbuf buf
= STRBUF_INIT
;
1212 int i
, ret
= 0, head_subsumed
;
1213 int best_cnt
= -1, merge_was_ok
= 0, automerge_was_ok
= 0;
1214 struct commit_list
*common
= NULL
;
1215 const char *best_strategy
= NULL
, *wt_strategy
= NULL
;
1216 struct commit_list
*remoteheads
, *p
;
1217 void *branch_to_free
;
1218 int orig_argc
= argc
;
1220 if (argc
== 2 && !strcmp(argv
[1], "-h"))
1221 usage_with_options(builtin_merge_usage
, builtin_merge_options
);
1224 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1227 branch
= branch_to_free
= resolve_refdup("HEAD", 0, &head_oid
, NULL
);
1229 skip_prefix(branch
, "refs/heads/", &branch
);
1231 init_diff_ui_defaults();
1232 git_config(git_merge_config
, NULL
);
1234 if (!branch
|| is_null_oid(&head_oid
))
1237 head_commit
= lookup_commit_or_die(&head_oid
, "HEAD");
1239 if (branch_mergeoptions
)
1240 parse_branch_merge_options(branch_mergeoptions
);
1241 argc
= parse_options(argc
, argv
, prefix
, builtin_merge_options
,
1242 builtin_merge_usage
, 0);
1243 if (shortlog_len
< 0)
1244 shortlog_len
= (merge_log_config
> 0) ? merge_log_config
: 0;
1246 if (verbosity
< 0 && show_progress
== -1)
1249 if (abort_current_merge
) {
1251 const char *nargv
[] = {"reset", "--merge", NULL
};
1254 usage_msg_opt(_("--abort expects no arguments"),
1255 builtin_merge_usage
, builtin_merge_options
);
1257 if (!file_exists(git_path_merge_head(the_repository
)))
1258 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1260 /* Invoke 'git reset --merge' */
1261 ret
= cmd_reset(nargc
, nargv
, prefix
);
1265 if (continue_current_merge
) {
1267 const char *nargv
[] = {"commit", NULL
};
1270 usage_msg_opt(_("--continue expects no arguments"),
1271 builtin_merge_usage
, builtin_merge_options
);
1273 if (!file_exists(git_path_merge_head(the_repository
)))
1274 die(_("There is no merge in progress (MERGE_HEAD missing)."));
1276 /* Invoke 'git commit' */
1277 ret
= cmd_commit(nargc
, nargv
, prefix
);
1281 if (read_cache_unmerged())
1282 die_resolve_conflict("merge");
1284 if (file_exists(git_path_merge_head(the_repository
))) {
1286 * There is no unmerged entry, don't advise 'git
1287 * add/rm <file>', just 'git commit'.
1289 if (advice_resolve_conflict
)
1290 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1291 "Please, commit your changes before you merge."));
1293 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1295 if (file_exists(git_path_cherry_pick_head(the_repository
))) {
1296 if (advice_resolve_conflict
)
1297 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1298 "Please, commit your changes before you merge."));
1300 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1302 resolve_undo_clear();
1308 if (fast_forward
== FF_NO
)
1309 die(_("You cannot combine --squash with --no-ff."));
1314 if (default_to_upstream
)
1315 argc
= setup_with_upstream(&argv
);
1317 die(_("No commit specified and merge.defaultToUpstream not set."));
1318 } else if (argc
== 1 && !strcmp(argv
[0], "-")) {
1323 usage_with_options(builtin_merge_usage
,
1324 builtin_merge_options
);
1328 * If the merged head is a valid one there is no reason
1329 * to forbid "git merge" into a branch yet to be born.
1330 * We do the same for "git pull".
1332 struct object_id
*remote_head_oid
;
1334 die(_("Squash commit into empty head not supported yet"));
1335 if (fast_forward
== FF_NO
)
1336 die(_("Non-fast-forward commit does not make sense into "
1338 remoteheads
= collect_parents(head_commit
, &head_subsumed
,
1341 die(_("%s - not something we can merge"), argv
[0]);
1342 if (remoteheads
->next
)
1343 die(_("Can merge only exactly one commit into empty head"));
1345 if (verify_signatures
)
1346 verify_merge_signature(remoteheads
->item
, verbosity
);
1348 remote_head_oid
= &remoteheads
->item
->object
.oid
;
1349 read_empty(remote_head_oid
, 0);
1350 update_ref("initial pull", "HEAD", remote_head_oid
, NULL
, 0,
1351 UPDATE_REFS_DIE_ON_ERR
);
1356 * All the rest are the commits being merged; prepare
1357 * the standard merge summary message to be appended
1358 * to the given message.
1360 remoteheads
= collect_parents(head_commit
, &head_subsumed
,
1361 argc
, argv
, &merge_msg
);
1363 if (!head_commit
|| !argc
)
1364 usage_with_options(builtin_merge_usage
,
1365 builtin_merge_options
);
1367 if (verify_signatures
) {
1368 for (p
= remoteheads
; p
; p
= p
->next
) {
1369 verify_merge_signature(p
->item
, verbosity
);
1373 strbuf_addstr(&buf
, "merge");
1374 for (p
= remoteheads
; p
; p
= p
->next
)
1375 strbuf_addf(&buf
, " %s", merge_remote_util(p
->item
)->name
);
1376 setenv("GIT_REFLOG_ACTION", buf
.buf
, 0);
1379 for (p
= remoteheads
; p
; p
= p
->next
) {
1380 struct commit
*commit
= p
->item
;
1381 strbuf_addf(&buf
, "GITHEAD_%s",
1382 oid_to_hex(&commit
->object
.oid
));
1383 setenv(buf
.buf
, merge_remote_util(commit
)->name
, 1);
1385 if (fast_forward
!= FF_ONLY
&& merging_a_throwaway_tag(commit
))
1386 fast_forward
= FF_NO
;
1389 if (option_edit
< 0)
1390 option_edit
= default_edit_option();
1392 if (!use_strategies
) {
1394 ; /* already up-to-date */
1395 else if (!remoteheads
->next
)
1396 add_strategies(pull_twohead
, DEFAULT_TWOHEAD
);
1398 add_strategies(pull_octopus
, DEFAULT_OCTOPUS
);
1401 for (i
= 0; i
< use_strategies_nr
; i
++) {
1402 if (use_strategies
[i
]->attr
& NO_FAST_FORWARD
)
1403 fast_forward
= FF_NO
;
1404 if (use_strategies
[i
]->attr
& NO_TRIVIAL
)
1409 ; /* already up-to-date */
1410 else if (!remoteheads
->next
)
1411 common
= get_merge_bases(head_commit
, remoteheads
->item
);
1413 struct commit_list
*list
= remoteheads
;
1414 commit_list_insert(head_commit
, &list
);
1415 common
= get_octopus_merge_bases(list
);
1419 update_ref("updating ORIG_HEAD", "ORIG_HEAD",
1420 &head_commit
->object
.oid
, NULL
, 0, UPDATE_REFS_DIE_ON_ERR
);
1422 if (remoteheads
&& !common
) {
1423 /* No common ancestors found. */
1424 if (!allow_unrelated_histories
)
1425 die(_("refusing to merge unrelated histories"));
1426 /* otherwise, we need a real merge. */
1427 } else if (!remoteheads
||
1428 (!remoteheads
->next
&& !common
->next
&&
1429 common
->item
== remoteheads
->item
)) {
1431 * If head can reach all the merge then we are up to date.
1432 * but first the most common case of merging one remote.
1434 finish_up_to_date(_("Already up to date."));
1436 } else if (fast_forward
!= FF_NO
&& !remoteheads
->next
&&
1438 oideq(&common
->item
->object
.oid
, &head_commit
->object
.oid
)) {
1439 /* Again the most common case of merging one remote. */
1440 struct strbuf msg
= STRBUF_INIT
;
1441 struct commit
*commit
;
1443 if (verbosity
>= 0) {
1444 printf(_("Updating %s..%s\n"),
1445 find_unique_abbrev(&head_commit
->object
.oid
,
1447 find_unique_abbrev(&remoteheads
->item
->object
.oid
,
1450 strbuf_addstr(&msg
, "Fast-forward");
1453 " (no commit created; -m option ignored)");
1454 commit
= remoteheads
->item
;
1460 if (checkout_fast_forward(the_repository
,
1461 &head_commit
->object
.oid
,
1462 &commit
->object
.oid
,
1463 overwrite_ignore
)) {
1468 finish(head_commit
, remoteheads
, &commit
->object
.oid
, msg
.buf
);
1471 } else if (!remoteheads
->next
&& common
->next
)
1474 * We are not doing octopus and not fast-forward. Need
1477 else if (!remoteheads
->next
&& !common
->next
&& option_commit
) {
1479 * We are not doing octopus, not fast-forward, and have
1482 refresh_cache(REFRESH_QUIET
);
1483 if (allow_trivial
&& fast_forward
!= FF_ONLY
) {
1484 /* See if it is really trivial. */
1485 git_committer_info(IDENT_STRICT
);
1486 printf(_("Trying really trivial in-index merge...\n"));
1487 if (!read_tree_trivial(&common
->item
->object
.oid
,
1488 &head_commit
->object
.oid
,
1489 &remoteheads
->item
->object
.oid
)) {
1490 ret
= merge_trivial(head_commit
, remoteheads
);
1493 printf(_("Nope.\n"));
1497 * An octopus. If we can reach all the remote we are up
1501 struct commit_list
*j
;
1503 for (j
= remoteheads
; j
; j
= j
->next
) {
1504 struct commit_list
*common_one
;
1507 * Here we *have* to calculate the individual
1508 * merge_bases again, otherwise "git merge HEAD^
1509 * HEAD^^" would be missed.
1511 common_one
= get_merge_bases(head_commit
, j
->item
);
1512 if (!oideq(&common_one
->item
->object
.oid
, &j
->item
->object
.oid
)) {
1518 finish_up_to_date(_("Already up to date. Yeeah!"));
1523 if (fast_forward
== FF_ONLY
)
1524 die(_("Not possible to fast-forward, aborting."));
1526 /* We are going to make a new commit. */
1527 git_committer_info(IDENT_STRICT
);
1530 * At this point, we need a real merge. No matter what strategy
1531 * we use, it would operate on the index, possibly affecting the
1532 * working tree, and when resolved cleanly, have the desired
1533 * tree in the index -- this means that the index must be in
1534 * sync with the head commit. The strategies are responsible
1537 if (use_strategies_nr
== 1 ||
1539 * Stash away the local changes so that we can try more than one.
1544 for (i
= 0; i
< use_strategies_nr
; i
++) {
1547 printf(_("Rewinding the tree to pristine...\n"));
1548 restore_state(&head_commit
->object
.oid
, &stash
);
1550 if (use_strategies_nr
!= 1)
1551 printf(_("Trying merge strategy %s...\n"),
1552 use_strategies
[i
]->name
);
1554 * Remember which strategy left the state in the working
1557 wt_strategy
= use_strategies
[i
]->name
;
1559 ret
= try_merge_strategy(use_strategies
[i
]->name
,
1560 common
, remoteheads
,
1562 if (!option_commit
&& !ret
) {
1565 * This is necessary here just to avoid writing
1566 * the tree, but later we will *not* exit with
1567 * status code 1 because merge_was_ok is set.
1574 * The backend exits with 1 when conflicts are
1575 * left to be resolved, with 2 when it does not
1576 * handle the given merge at all.
1579 int cnt
= evaluate_result();
1581 if (best_cnt
<= 0 || cnt
<= best_cnt
) {
1582 best_strategy
= use_strategies
[i
]->name
;
1592 /* Automerge succeeded. */
1593 write_tree_trivial(&result_tree
);
1594 automerge_was_ok
= 1;
1599 * If we have a resulting tree, that means the strategy module
1600 * auto resolved the merge cleanly.
1602 if (automerge_was_ok
) {
1603 ret
= finish_automerge(head_commit
, head_subsumed
,
1604 common
, remoteheads
,
1605 &result_tree
, wt_strategy
);
1610 * Pick the result from the best strategy and have the user fix
1613 if (!best_strategy
) {
1614 restore_state(&head_commit
->object
.oid
, &stash
);
1615 if (use_strategies_nr
> 1)
1617 _("No merge strategy handled the merge.\n"));
1619 fprintf(stderr
, _("Merge with strategy %s failed.\n"),
1620 use_strategies
[0]->name
);
1623 } else if (best_strategy
== wt_strategy
)
1624 ; /* We already have its result in the working tree. */
1626 printf(_("Rewinding the tree to pristine...\n"));
1627 restore_state(&head_commit
->object
.oid
, &stash
);
1628 printf(_("Using the %s to prepare resolving by hand.\n"),
1630 try_merge_strategy(best_strategy
, common
, remoteheads
,
1635 finish(head_commit
, remoteheads
, NULL
, NULL
);
1637 write_merge_state(remoteheads
);
1640 fprintf(stderr
, _("Automatic merge went well; "
1641 "stopped before committing as requested\n"));
1643 ret
= suggest_conflicts();
1646 free(branch_to_free
);