4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
10 #include "parse-options.h"
12 #include "run-command.h"
18 #include "unpack-trees.h"
19 #include "cache-tree.h"
26 #include "merge-recursive.h"
27 #include "resolve-undo.h"
29 #define DEFAULT_TWOHEAD (1<<0)
30 #define DEFAULT_OCTOPUS (1<<1)
31 #define NO_FAST_FORWARD (1<<2)
32 #define NO_TRIVIAL (1<<3)
39 static const char * const builtin_merge_usage
[] = {
40 "git merge [options] <remote>...",
41 "git merge [options] <msg> HEAD <remote>",
45 static int show_diffstat
= 1, option_log
, squash
;
46 static int option_commit
= 1, allow_fast_forward
= 1;
47 static int fast_forward_only
;
48 static int allow_trivial
= 1, have_message
;
49 static struct strbuf merge_msg
;
50 static struct commit_list
*remoteheads
;
51 static unsigned char head
[20], stash
[20];
52 static struct strategy
**use_strategies
;
53 static size_t use_strategies_nr
, use_strategies_alloc
;
54 static const char **xopts
;
55 static size_t xopts_nr
, xopts_alloc
;
56 static const char *branch
;
58 static int allow_rerere_auto
;
59 static int abort_current_merge
;
61 static struct strategy all_strategy
[] = {
62 { "recursive", DEFAULT_TWOHEAD
| NO_TRIVIAL
},
63 { "octopus", DEFAULT_OCTOPUS
},
65 { "ours", NO_FAST_FORWARD
| NO_TRIVIAL
},
66 { "subtree", NO_FAST_FORWARD
| NO_TRIVIAL
},
69 static const char *pull_twohead
, *pull_octopus
;
71 static int option_parse_message(const struct option
*opt
,
72 const char *arg
, int unset
)
74 struct strbuf
*buf
= opt
->value
;
77 strbuf_setlen(buf
, 0);
79 strbuf_addf(buf
, "%s%s", buf
->len
? "\n\n" : "", arg
);
82 return error("switch `m' requires a value");
86 static struct strategy
*get_strategy(const char *name
)
90 static struct cmdnames main_cmds
, other_cmds
;
96 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
97 if (!strcmp(name
, all_strategy
[i
].name
))
98 return &all_strategy
[i
];
101 struct cmdnames not_strategies
;
104 memset(¬_strategies
, 0, sizeof(struct cmdnames
));
105 load_command_list("git-merge-", &main_cmds
, &other_cmds
);
106 for (i
= 0; i
< main_cmds
.cnt
; i
++) {
108 struct cmdname
*ent
= main_cmds
.names
[i
];
109 for (j
= 0; j
< ARRAY_SIZE(all_strategy
); j
++)
110 if (!strncmp(ent
->name
, all_strategy
[j
].name
, ent
->len
)
111 && !all_strategy
[j
].name
[ent
->len
])
114 add_cmdname(¬_strategies
, ent
->name
, ent
->len
);
116 exclude_cmds(&main_cmds
, ¬_strategies
);
118 if (!is_in_cmdlist(&main_cmds
, name
) && !is_in_cmdlist(&other_cmds
, name
)) {
119 fprintf(stderr
, "Could not find merge strategy '%s'.\n", name
);
120 fprintf(stderr
, "Available strategies are:");
121 for (i
= 0; i
< main_cmds
.cnt
; i
++)
122 fprintf(stderr
, " %s", main_cmds
.names
[i
]->name
);
123 fprintf(stderr
, ".\n");
124 if (other_cmds
.cnt
) {
125 fprintf(stderr
, "Available custom strategies are:");
126 for (i
= 0; i
< other_cmds
.cnt
; i
++)
127 fprintf(stderr
, " %s", other_cmds
.names
[i
]->name
);
128 fprintf(stderr
, ".\n");
133 ret
= xcalloc(1, sizeof(struct strategy
));
134 ret
->name
= xstrdup(name
);
138 static void append_strategy(struct strategy
*s
)
140 ALLOC_GROW(use_strategies
, use_strategies_nr
+ 1, use_strategies_alloc
);
141 use_strategies
[use_strategies_nr
++] = s
;
144 static int option_parse_strategy(const struct option
*opt
,
145 const char *name
, int unset
)
150 append_strategy(get_strategy(name
));
154 static int option_parse_x(const struct option
*opt
,
155 const char *arg
, int unset
)
160 ALLOC_GROW(xopts
, xopts_nr
+ 1, xopts_alloc
);
161 xopts
[xopts_nr
++] = xstrdup(arg
);
165 static int option_parse_n(const struct option
*opt
,
166 const char *arg
, int unset
)
168 show_diffstat
= unset
;
172 static struct option builtin_merge_options
[] = {
173 { OPTION_CALLBACK
, 'n', NULL
, NULL
, NULL
,
174 "do not show a diffstat at the end of the merge",
175 PARSE_OPT_NOARG
, option_parse_n
},
176 OPT_BOOLEAN(0, "stat", &show_diffstat
,
177 "show a diffstat at the end of the merge"),
178 OPT_BOOLEAN(0, "summary", &show_diffstat
, "(synonym to --stat)"),
179 OPT_BOOLEAN(0, "log", &option_log
,
180 "add list of one-line log to merge commit message"),
181 OPT_BOOLEAN(0, "squash", &squash
,
182 "create a single commit instead of doing a merge"),
183 OPT_BOOLEAN(0, "commit", &option_commit
,
184 "perform a commit if the merge succeeds (default)"),
185 OPT_BOOLEAN(0, "ff", &allow_fast_forward
,
186 "allow fast-forward (default)"),
187 OPT_BOOLEAN(0, "ff-only", &fast_forward_only
,
188 "abort if fast-forward is not possible"),
189 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
190 OPT_CALLBACK('s', "strategy", &use_strategies
, "strategy",
191 "merge strategy to use", option_parse_strategy
),
192 OPT_CALLBACK('X', "strategy-option", &xopts
, "option=value",
193 "option for selected merge strategy", option_parse_x
),
194 OPT_CALLBACK('m', "message", &merge_msg
, "message",
195 "message to be used for the merge commit (if any)",
196 option_parse_message
),
197 OPT__VERBOSITY(&verbosity
),
198 OPT_BOOLEAN(0, "abort", &abort_current_merge
,
199 "abort the current in-progress merge"),
203 /* Cleans up metadata that is uninteresting after a succeeded merge. */
204 static void drop_save(void)
206 unlink(git_path("MERGE_HEAD"));
207 unlink(git_path("MERGE_MSG"));
208 unlink(git_path("MERGE_MODE"));
211 static void save_state(void)
214 struct child_process cp
;
215 struct strbuf buffer
= STRBUF_INIT
;
216 const char *argv
[] = {"stash", "create", NULL
};
218 memset(&cp
, 0, sizeof(cp
));
223 if (start_command(&cp
))
224 die("could not run stash.");
225 len
= strbuf_read(&buffer
, cp
.out
, 1024);
228 if (finish_command(&cp
) || len
< 0)
232 strbuf_setlen(&buffer
, buffer
.len
-1);
233 if (get_sha1(buffer
.buf
, stash
))
234 die("not a valid object: %s", buffer
.buf
);
237 static void reset_hard(unsigned const char *sha1
, int verbose
)
242 args
[i
++] = "read-tree";
245 args
[i
++] = "--reset";
247 args
[i
++] = sha1_to_hex(sha1
);
250 if (run_command_v_opt(args
, RUN_GIT_CMD
))
251 die("read-tree failed");
254 static void restore_state(void)
256 struct strbuf sb
= STRBUF_INIT
;
257 const char *args
[] = { "stash", "apply", NULL
, NULL
};
259 if (is_null_sha1(stash
))
264 args
[2] = sha1_to_hex(stash
);
267 * It is OK to ignore error here, for example when there was
268 * nothing to restore.
270 run_command_v_opt(args
, RUN_GIT_CMD
);
273 refresh_cache(REFRESH_QUIET
);
276 /* This is called when no merge was necessary. */
277 static void finish_up_to_date(const char *msg
)
280 printf("%s%s\n", squash
? " (nothing to squash)" : "", msg
);
284 static void squash_message(void)
287 struct commit
*commit
;
288 struct strbuf out
= STRBUF_INIT
;
289 struct commit_list
*j
;
291 struct pretty_print_context ctx
= {0};
293 printf("Squash commit -- not updating HEAD\n");
294 fd
= open(git_path("SQUASH_MSG"), O_WRONLY
| O_CREAT
, 0666);
296 die_errno("Could not write to '%s'", git_path("SQUASH_MSG"));
298 init_revisions(&rev
, NULL
);
299 rev
.ignore_merges
= 1;
300 rev
.commit_format
= CMIT_FMT_MEDIUM
;
302 commit
= lookup_commit(head
);
303 commit
->object
.flags
|= UNINTERESTING
;
304 add_pending_object(&rev
, &commit
->object
, NULL
);
306 for (j
= remoteheads
; j
; j
= j
->next
)
307 add_pending_object(&rev
, &j
->item
->object
, NULL
);
309 setup_revisions(0, NULL
, &rev
, NULL
);
310 if (prepare_revision_walk(&rev
))
311 die("revision walk setup failed");
313 ctx
.abbrev
= rev
.abbrev
;
314 ctx
.date_mode
= rev
.date_mode
;
316 strbuf_addstr(&out
, "Squashed commit of the following:\n");
317 while ((commit
= get_revision(&rev
)) != NULL
) {
318 strbuf_addch(&out
, '\n');
319 strbuf_addf(&out
, "commit %s\n",
320 sha1_to_hex(commit
->object
.sha1
));
321 pretty_print_commit(rev
.commit_format
, commit
, &out
, &ctx
);
323 if (write(fd
, out
.buf
, out
.len
) < 0)
324 die_errno("Writing SQUASH_MSG");
326 die_errno("Finishing SQUASH_MSG");
327 strbuf_release(&out
);
330 static void finish(const unsigned char *new_head
, const char *msg
)
332 struct strbuf reflog_message
= STRBUF_INIT
;
335 strbuf_addstr(&reflog_message
, getenv("GIT_REFLOG_ACTION"));
339 strbuf_addf(&reflog_message
, "%s: %s",
340 getenv("GIT_REFLOG_ACTION"), msg
);
345 if (verbosity
>= 0 && !merge_msg
.len
)
346 printf("No merge message -- not updating HEAD\n");
348 const char *argv_gc_auto
[] = { "gc", "--auto", NULL
};
349 update_ref(reflog_message
.buf
, "HEAD",
353 * We ignore errors in 'gc --auto', since the
354 * user should see them.
356 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
359 if (new_head
&& show_diffstat
) {
360 struct diff_options opts
;
362 opts
.output_format
|=
363 DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
364 opts
.detect_rename
= DIFF_DETECT_RENAME
;
365 if (diff_use_color_default
> 0)
366 DIFF_OPT_SET(&opts
, COLOR_DIFF
);
367 if (diff_setup_done(&opts
) < 0)
368 die("diff_setup_done failed");
369 diff_tree_sha1(head
, new_head
, "", &opts
);
374 /* Run a post-merge hook */
375 run_hook(NULL
, "post-merge", squash
? "1" : "0", NULL
);
377 strbuf_release(&reflog_message
);
380 /* Get the name for the merge commit's message. */
381 static void merge_name(const char *remote
, struct strbuf
*msg
)
383 struct object
*remote_head
;
384 unsigned char branch_head
[20], buf_sha
[20];
385 struct strbuf buf
= STRBUF_INIT
;
386 struct strbuf bname
= STRBUF_INIT
;
391 strbuf_branchname(&bname
, remote
);
394 memset(branch_head
, 0, sizeof(branch_head
));
395 remote_head
= peel_to_type(remote
, 0, NULL
, OBJ_COMMIT
);
397 die("'%s' does not point to a commit", remote
);
399 if (dwim_ref(remote
, strlen(remote
), branch_head
, &found_ref
) > 0) {
400 if (!prefixcmp(found_ref
, "refs/heads/")) {
401 strbuf_addf(msg
, "%s\t\tbranch '%s' of .\n",
402 sha1_to_hex(branch_head
), remote
);
405 if (!prefixcmp(found_ref
, "refs/remotes/")) {
406 strbuf_addf(msg
, "%s\t\tremote branch '%s' of .\n",
407 sha1_to_hex(branch_head
), remote
);
412 /* See if remote matches <name>^^^.. or <name>~<number> */
413 for (len
= 0, ptr
= remote
+ strlen(remote
);
414 remote
< ptr
&& ptr
[-1] == '^';
421 ptr
= strrchr(remote
, '~');
423 int seen_nonzero
= 0;
426 while (*++ptr
&& isdigit(*ptr
)) {
427 seen_nonzero
|= (*ptr
!= '0');
431 len
= 0; /* not ...~<number> */
432 else if (seen_nonzero
)
435 early
= 1; /* "name~" is "name~1"! */
439 struct strbuf truname
= STRBUF_INIT
;
440 strbuf_addstr(&truname
, "refs/heads/");
441 strbuf_addstr(&truname
, remote
);
442 strbuf_setlen(&truname
, truname
.len
- len
);
443 if (resolve_ref(truname
.buf
, buf_sha
, 0, NULL
)) {
445 "%s\t\tbranch '%s'%s of .\n",
446 sha1_to_hex(remote_head
->sha1
),
448 (early
? " (early part)" : ""));
449 strbuf_release(&truname
);
454 if (!strcmp(remote
, "FETCH_HEAD") &&
455 !access(git_path("FETCH_HEAD"), R_OK
)) {
457 struct strbuf line
= STRBUF_INIT
;
460 fp
= fopen(git_path("FETCH_HEAD"), "r");
462 die_errno("could not open '%s' for reading",
463 git_path("FETCH_HEAD"));
464 strbuf_getline(&line
, fp
, '\n');
466 ptr
= strstr(line
.buf
, "\tnot-for-merge\t");
468 strbuf_remove(&line
, ptr
-line
.buf
+1, 13);
469 strbuf_addbuf(msg
, &line
);
470 strbuf_release(&line
);
473 strbuf_addf(msg
, "%s\t\tcommit '%s'\n",
474 sha1_to_hex(remote_head
->sha1
), remote
);
476 strbuf_release(&buf
);
477 strbuf_release(&bname
);
480 static int git_merge_config(const char *k
, const char *v
, void *cb
)
482 if (branch
&& !prefixcmp(k
, "branch.") &&
483 !prefixcmp(k
+ 7, branch
) &&
484 !strcmp(k
+ 7 + strlen(branch
), ".mergeoptions")) {
490 argc
= split_cmdline(buf
, &argv
);
492 die("Bad branch.%s.mergeoptions string", branch
);
493 argv
= xrealloc(argv
, sizeof(*argv
) * (argc
+ 2));
494 memmove(argv
+ 1, argv
, sizeof(*argv
) * (argc
+ 1));
496 parse_options(argc
, argv
, NULL
, builtin_merge_options
,
497 builtin_merge_usage
, 0);
501 if (!strcmp(k
, "merge.diffstat") || !strcmp(k
, "merge.stat"))
502 show_diffstat
= git_config_bool(k
, v
);
503 else if (!strcmp(k
, "pull.twohead"))
504 return git_config_string(&pull_twohead
, k
, v
);
505 else if (!strcmp(k
, "pull.octopus"))
506 return git_config_string(&pull_octopus
, k
, v
);
507 else if (!strcmp(k
, "merge.log") || !strcmp(k
, "merge.summary"))
508 option_log
= git_config_bool(k
, v
);
509 return git_diff_ui_config(k
, v
, cb
);
512 static int read_tree_trivial(unsigned char *common
, unsigned char *head
,
516 struct tree
*trees
[MAX_UNPACK_TREES
];
517 struct tree_desc t
[MAX_UNPACK_TREES
];
518 struct unpack_trees_options opts
;
520 memset(&opts
, 0, sizeof(opts
));
522 opts
.src_index
= &the_index
;
523 opts
.dst_index
= &the_index
;
525 opts
.verbose_update
= 1;
526 opts
.trivial_merges_only
= 1;
528 trees
[nr_trees
] = parse_tree_indirect(common
);
529 if (!trees
[nr_trees
++])
531 trees
[nr_trees
] = parse_tree_indirect(head
);
532 if (!trees
[nr_trees
++])
534 trees
[nr_trees
] = parse_tree_indirect(one
);
535 if (!trees
[nr_trees
++])
537 opts
.fn
= threeway_merge
;
538 cache_tree_free(&active_cache_tree
);
539 for (i
= 0; i
< nr_trees
; i
++) {
540 parse_tree(trees
[i
]);
541 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
543 if (unpack_trees(nr_trees
, t
, &opts
))
548 static void write_tree_trivial(unsigned char *sha1
)
550 if (write_cache_as_tree(sha1
, 0, NULL
))
551 die("git write-tree failed to write a tree");
554 int try_merge_command(const char *strategy
, struct commit_list
*common
,
555 const char *head_arg
, struct commit_list
*remotes
)
558 int i
= 0, x
= 0, ret
;
559 struct commit_list
*j
;
560 struct strbuf buf
= STRBUF_INIT
;
562 args
= xmalloc((4 + xopts_nr
+ commit_list_count(common
) +
563 commit_list_count(remotes
)) * sizeof(char *));
564 strbuf_addf(&buf
, "merge-%s", strategy
);
566 for (x
= 0; x
< xopts_nr
; x
++) {
567 char *s
= xmalloc(strlen(xopts
[x
])+2+1);
569 strcpy(s
+2, xopts
[x
]);
572 for (j
= common
; j
; j
= j
->next
)
573 args
[i
++] = xstrdup(sha1_to_hex(j
->item
->object
.sha1
));
575 args
[i
++] = head_arg
;
576 for (j
= remotes
; j
; j
= j
->next
)
577 args
[i
++] = xstrdup(sha1_to_hex(j
->item
->object
.sha1
));
579 ret
= run_command_v_opt(args
, RUN_GIT_CMD
);
580 strbuf_release(&buf
);
582 for (x
= 0; x
< xopts_nr
; x
++)
583 free((void *)args
[i
++]);
584 for (j
= common
; j
; j
= j
->next
)
585 free((void *)args
[i
++]);
587 for (j
= remotes
; j
; j
= j
->next
)
588 free((void *)args
[i
++]);
591 if (read_cache() < 0)
592 die("failed to read the cache");
593 resolve_undo_clear();
598 static int try_merge_strategy(const char *strategy
, struct commit_list
*common
,
599 const char *head_arg
)
602 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
604 index_fd
= hold_locked_index(lock
, 1);
605 refresh_cache(REFRESH_QUIET
);
606 if (active_cache_changed
&&
607 (write_cache(index_fd
, active_cache
, active_nr
) ||
608 commit_locked_index(lock
)))
609 return error("Unable to write index.");
610 rollback_lock_file(lock
);
612 if (!strcmp(strategy
, "recursive") || !strcmp(strategy
, "subtree")) {
614 struct commit
*result
;
615 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
617 struct commit_list
*reversed
= NULL
;
618 struct merge_options o
;
619 struct commit_list
*j
;
621 if (remoteheads
->next
) {
622 error("Not handling anything other than two heads merge.");
626 init_merge_options(&o
);
627 if (!strcmp(strategy
, "subtree"))
628 o
.subtree_shift
= "";
630 for (x
= 0; x
< xopts_nr
; x
++) {
631 if (!strcmp(xopts
[x
], "ours"))
632 o
.recursive_variant
= MERGE_RECURSIVE_OURS
;
633 else if (!strcmp(xopts
[x
], "theirs"))
634 o
.recursive_variant
= MERGE_RECURSIVE_THEIRS
;
635 else if (!strcmp(xopts
[x
], "subtree"))
636 o
.subtree_shift
= "";
637 else if (!prefixcmp(xopts
[x
], "subtree="))
638 o
.subtree_shift
= xopts
[x
]+8;
640 die("Unknown option for merge-recursive: -X%s", xopts
[x
]);
643 o
.branch1
= head_arg
;
644 o
.branch2
= remoteheads
->item
->util
;
646 for (j
= common
; j
; j
= j
->next
)
647 commit_list_insert(j
->item
, &reversed
);
649 index_fd
= hold_locked_index(lock
, 1);
650 clean
= merge_recursive(&o
, lookup_commit(head
),
651 remoteheads
->item
, reversed
, &result
);
652 if (active_cache_changed
&&
653 (write_cache(index_fd
, active_cache
, active_nr
) ||
654 commit_locked_index(lock
)))
655 die ("unable to write %s", get_index_file());
656 rollback_lock_file(lock
);
657 return clean
? 0 : 1;
659 return try_merge_command(strategy
, common
, head_arg
, remoteheads
);
663 static void count_diff_files(struct diff_queue_struct
*q
,
664 struct diff_options
*opt
, void *data
)
671 static int count_unmerged_entries(void)
675 for (i
= 0; i
< active_nr
; i
++)
676 if (ce_stage(active_cache
[i
]))
682 int checkout_fast_forward(const unsigned char *head
, const unsigned char *remote
)
684 struct tree
*trees
[MAX_UNPACK_TREES
];
685 struct unpack_trees_options opts
;
686 struct tree_desc t
[MAX_UNPACK_TREES
];
687 int i
, fd
, nr_trees
= 0;
688 struct dir_struct dir
;
689 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
691 refresh_cache(REFRESH_QUIET
);
693 fd
= hold_locked_index(lock_file
, 1);
695 memset(&trees
, 0, sizeof(trees
));
696 memset(&opts
, 0, sizeof(opts
));
697 memset(&t
, 0, sizeof(t
));
698 memset(&dir
, 0, sizeof(dir
));
699 dir
.flags
|= DIR_SHOW_IGNORED
;
700 dir
.exclude_per_dir
= ".gitignore";
704 opts
.src_index
= &the_index
;
705 opts
.dst_index
= &the_index
;
707 opts
.verbose_update
= 1;
709 opts
.fn
= twoway_merge
;
710 opts
.msgs
= get_porcelain_error_msgs();
712 trees
[nr_trees
] = parse_tree_indirect(head
);
713 if (!trees
[nr_trees
++])
715 trees
[nr_trees
] = parse_tree_indirect(remote
);
716 if (!trees
[nr_trees
++])
718 for (i
= 0; i
< nr_trees
; i
++) {
719 parse_tree(trees
[i
]);
720 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
722 if (unpack_trees(nr_trees
, t
, &opts
))
724 if (write_cache(fd
, active_cache
, active_nr
) ||
725 commit_locked_index(lock_file
))
726 die("unable to write new index file");
730 static void split_merge_strategies(const char *string
, struct strategy
**list
,
738 buf
= xstrdup(string
);
743 ALLOC_GROW(*list
, *nr
+ 1, *alloc
);
744 (*list
)[(*nr
)++].name
= xstrdup(q
);
749 ALLOC_GROW(*list
, *nr
+ 1, *alloc
);
750 (*list
)[(*nr
)++].name
= xstrdup(q
);
756 static void add_strategies(const char *string
, unsigned attr
)
758 struct strategy
*list
= NULL
;
759 int list_alloc
= 0, list_nr
= 0, i
;
761 memset(&list
, 0, sizeof(list
));
762 split_merge_strategies(string
, &list
, &list_nr
, &list_alloc
);
764 for (i
= 0; i
< list_nr
; i
++)
765 append_strategy(get_strategy(list
[i
].name
));
768 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
769 if (all_strategy
[i
].attr
& attr
)
770 append_strategy(&all_strategy
[i
]);
774 static int merge_trivial(void)
776 unsigned char result_tree
[20], result_commit
[20];
777 struct commit_list
*parent
= xmalloc(sizeof(*parent
));
779 write_tree_trivial(result_tree
);
780 printf("Wonderful.\n");
781 parent
->item
= lookup_commit(head
);
782 parent
->next
= xmalloc(sizeof(*parent
->next
));
783 parent
->next
->item
= remoteheads
->item
;
784 parent
->next
->next
= NULL
;
785 commit_tree(merge_msg
.buf
, result_tree
, parent
, result_commit
, NULL
);
786 finish(result_commit
, "In-index merge");
791 static int finish_automerge(struct commit_list
*common
,
792 unsigned char *result_tree
,
793 const char *wt_strategy
)
795 struct commit_list
*parents
= NULL
, *j
;
796 struct strbuf buf
= STRBUF_INIT
;
797 unsigned char result_commit
[20];
799 free_commit_list(common
);
800 if (allow_fast_forward
) {
801 parents
= remoteheads
;
802 commit_list_insert(lookup_commit(head
), &parents
);
803 parents
= reduce_heads(parents
);
805 struct commit_list
**pptr
= &parents
;
807 pptr
= &commit_list_insert(lookup_commit(head
),
809 for (j
= remoteheads
; j
; j
= j
->next
)
810 pptr
= &commit_list_insert(j
->item
, pptr
)->next
;
812 free_commit_list(remoteheads
);
813 strbuf_addch(&merge_msg
, '\n');
814 commit_tree(merge_msg
.buf
, result_tree
, parents
, result_commit
, NULL
);
815 strbuf_addf(&buf
, "Merge made by %s.", wt_strategy
);
816 finish(result_commit
, buf
.buf
);
817 strbuf_release(&buf
);
822 static int suggest_conflicts(void)
827 fp
= fopen(git_path("MERGE_MSG"), "a");
829 die_errno("Could not open '%s' for writing",
830 git_path("MERGE_MSG"));
831 fprintf(fp
, "\nConflicts:\n");
832 for (pos
= 0; pos
< active_nr
; pos
++) {
833 struct cache_entry
*ce
= active_cache
[pos
];
836 fprintf(fp
, "\t%s\n", ce
->name
);
837 while (pos
+ 1 < active_nr
&&
839 active_cache
[pos
+ 1]->name
))
844 rerere(allow_rerere_auto
);
845 printf("Automatic merge failed; "
846 "fix conflicts and then commit the result.\n");
850 static struct commit
*is_old_style_invocation(int argc
, const char **argv
)
852 struct commit
*second_token
= NULL
;
854 unsigned char second_sha1
[20];
856 if (get_sha1(argv
[1], second_sha1
))
858 second_token
= lookup_commit_reference_gently(second_sha1
, 0);
860 die("'%s' is not a commit", argv
[1]);
861 if (hashcmp(second_token
->object
.sha1
, head
))
867 static int evaluate_result(void)
872 /* Check how many files differ. */
873 init_revisions(&rev
, "");
874 setup_revisions(0, NULL
, &rev
, NULL
);
875 rev
.diffopt
.output_format
|=
876 DIFF_FORMAT_CALLBACK
;
877 rev
.diffopt
.format_callback
= count_diff_files
;
878 rev
.diffopt
.format_callback_data
= &cnt
;
879 run_diff_files(&rev
, 0);
882 * Check how many unmerged entries are
885 cnt
+= count_unmerged_entries();
890 int cmd_merge(int argc
, const char **argv
, const char *prefix
)
892 unsigned char result_tree
[20];
893 struct strbuf buf
= STRBUF_INIT
;
894 const char *head_arg
;
895 int flag
, head_invalid
= 0, i
;
896 int best_cnt
= -1, merge_was_ok
= 0, automerge_was_ok
= 0;
897 struct commit_list
*common
= NULL
;
898 const char *best_strategy
= NULL
, *wt_strategy
= NULL
;
899 struct commit_list
**remotes
= &remoteheads
;
902 * Check if we are _not_ on a detached HEAD, i.e. if there is a
905 branch
= resolve_ref("HEAD", head
, 0, &flag
);
906 if (branch
&& !prefixcmp(branch
, "refs/heads/"))
908 if (is_null_sha1(head
))
911 git_config(git_merge_config
, NULL
);
914 if (diff_use_color_default
== -1)
915 diff_use_color_default
= git_use_color_default
;
917 argc
= parse_options(argc
, argv
, prefix
, builtin_merge_options
,
918 builtin_merge_usage
, 0);
920 if (abort_current_merge
) {
922 const char *nargv
[] = {"reset", "--merge", NULL
};
924 if (!file_exists(git_path("MERGE_HEAD")))
925 die("There is no merge to abort (MERGE_HEAD missing).");
927 /* Invoke 'git reset --merge' */
928 return cmd_reset(nargc
, nargv
, prefix
);
931 if (read_cache_unmerged())
932 die_resolve_conflict("merge");
934 if (file_exists(git_path("MERGE_HEAD"))) {
936 * There is no unmerged entry, don't advise 'git
937 * add/rm <file>', just 'git commit'.
939 if (advice_resolve_conflict
)
940 die("You have not concluded your merge (MERGE_HEAD exists).\n"
941 "Please, commit your changes before you can merge.");
943 die("You have not concluded your merge (MERGE_HEAD exists).");
945 resolve_undo_clear();
951 if (!allow_fast_forward
)
952 die("You cannot combine --squash with --no-ff.");
956 if (!allow_fast_forward
&& fast_forward_only
)
957 die("You cannot combine --no-ff with --ff-only.");
960 usage_with_options(builtin_merge_usage
,
961 builtin_merge_options
);
964 * This could be traditional "merge <msg> HEAD <commit>..." and
965 * the way we can tell it is to see if the second token is HEAD,
966 * but some people might have misused the interface and used a
967 * committish that is the same as HEAD there instead.
968 * Traditional format never would have "-m" so it is an
969 * additional safety measure to check for it.
972 if (!have_message
&& is_old_style_invocation(argc
, argv
)) {
973 strbuf_addstr(&merge_msg
, argv
[0]);
977 } else if (head_invalid
) {
978 struct object
*remote_head
;
980 * If the merged head is a valid one there is no reason
981 * to forbid "git merge" into a branch yet to be born.
982 * We do the same for "git pull".
985 die("Can merge only exactly one commit into "
988 die("Squash commit into empty head not supported yet");
989 if (!allow_fast_forward
)
990 die("Non-fast-forward commit does not make sense into "
992 remote_head
= peel_to_type(argv
[0], 0, NULL
, OBJ_COMMIT
);
994 die("%s - not something we can merge", argv
[0]);
995 update_ref("initial pull", "HEAD", remote_head
->sha1
, NULL
, 0,
997 reset_hard(remote_head
->sha1
, 0);
1000 struct strbuf merge_names
= STRBUF_INIT
;
1002 /* We are invoked directly as the first-class UI. */
1006 * All the rest are the commits being merged;
1007 * prepare the standard merge summary message to
1008 * be appended to the given message. If remote
1009 * is invalid we will die later in the common
1010 * codepath so we discard the error in this
1013 for (i
= 0; i
< argc
; i
++)
1014 merge_name(argv
[i
], &merge_names
);
1016 if (have_message
&& option_log
)
1017 fmt_merge_msg_shortlog(&merge_names
, &merge_msg
);
1018 else if (!have_message
)
1019 fmt_merge_msg(option_log
, &merge_names
, &merge_msg
);
1022 if (!(have_message
&& !option_log
) && merge_msg
.len
)
1023 strbuf_setlen(&merge_msg
, merge_msg
.len
-1);
1026 if (head_invalid
|| !argc
)
1027 usage_with_options(builtin_merge_usage
,
1028 builtin_merge_options
);
1030 strbuf_addstr(&buf
, "merge");
1031 for (i
= 0; i
< argc
; i
++)
1032 strbuf_addf(&buf
, " %s", argv
[i
]);
1033 setenv("GIT_REFLOG_ACTION", buf
.buf
, 0);
1036 for (i
= 0; i
< argc
; i
++) {
1038 struct commit
*commit
;
1040 o
= peel_to_type(argv
[i
], 0, NULL
, OBJ_COMMIT
);
1042 die("%s - not something we can merge", argv
[i
]);
1043 commit
= lookup_commit(o
->sha1
);
1044 commit
->util
= (void *)argv
[i
];
1045 remotes
= &commit_list_insert(commit
, remotes
)->next
;
1047 strbuf_addf(&buf
, "GITHEAD_%s", sha1_to_hex(o
->sha1
));
1048 setenv(buf
.buf
, argv
[i
], 1);
1052 if (!use_strategies
) {
1053 if (!remoteheads
->next
)
1054 add_strategies(pull_twohead
, DEFAULT_TWOHEAD
);
1056 add_strategies(pull_octopus
, DEFAULT_OCTOPUS
);
1059 for (i
= 0; i
< use_strategies_nr
; i
++) {
1060 if (use_strategies
[i
]->attr
& NO_FAST_FORWARD
)
1061 allow_fast_forward
= 0;
1062 if (use_strategies
[i
]->attr
& NO_TRIVIAL
)
1066 if (!remoteheads
->next
)
1067 common
= get_merge_bases(lookup_commit(head
),
1068 remoteheads
->item
, 1);
1070 struct commit_list
*list
= remoteheads
;
1071 commit_list_insert(lookup_commit(head
), &list
);
1072 common
= get_octopus_merge_bases(list
);
1076 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head
, NULL
, 0,
1080 ; /* No common ancestors found. We need a real merge. */
1081 else if (!remoteheads
->next
&& !common
->next
&&
1082 common
->item
== remoteheads
->item
) {
1084 * If head can reach all the merge then we are up to date.
1085 * but first the most common case of merging one remote.
1087 finish_up_to_date("Already up-to-date.");
1089 } else if (allow_fast_forward
&& !remoteheads
->next
&&
1091 !hashcmp(common
->item
->object
.sha1
, head
)) {
1092 /* Again the most common case of merging one remote. */
1093 struct strbuf msg
= STRBUF_INIT
;
1097 strcpy(hex
, find_unique_abbrev(head
, DEFAULT_ABBREV
));
1100 printf("Updating %s..%s\n",
1102 find_unique_abbrev(remoteheads
->item
->object
.sha1
,
1104 strbuf_addstr(&msg
, "Fast-forward");
1107 " (no commit created; -m option ignored)");
1108 o
= peel_to_type(sha1_to_hex(remoteheads
->item
->object
.sha1
),
1109 0, NULL
, OBJ_COMMIT
);
1113 if (checkout_fast_forward(head
, remoteheads
->item
->object
.sha1
))
1116 finish(o
->sha1
, msg
.buf
);
1119 } else if (!remoteheads
->next
&& common
->next
)
1122 * We are not doing octopus and not fast-forward. Need
1125 else if (!remoteheads
->next
&& !common
->next
&& option_commit
) {
1127 * We are not doing octopus, not fast-forward, and have
1130 refresh_cache(REFRESH_QUIET
);
1131 if (allow_trivial
&& !fast_forward_only
) {
1132 /* See if it is really trivial. */
1133 git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1134 printf("Trying really trivial in-index merge...\n");
1135 if (!read_tree_trivial(common
->item
->object
.sha1
,
1136 head
, remoteheads
->item
->object
.sha1
))
1137 return merge_trivial();
1142 * An octopus. If we can reach all the remote we are up
1146 struct commit_list
*j
;
1148 for (j
= remoteheads
; j
; j
= j
->next
) {
1149 struct commit_list
*common_one
;
1152 * Here we *have* to calculate the individual
1153 * merge_bases again, otherwise "git merge HEAD^
1154 * HEAD^^" would be missed.
1156 common_one
= get_merge_bases(lookup_commit(head
),
1158 if (hashcmp(common_one
->item
->object
.sha1
,
1159 j
->item
->object
.sha1
)) {
1165 finish_up_to_date("Already up-to-date. Yeeah!");
1170 if (fast_forward_only
)
1171 die("Not possible to fast-forward, aborting.");
1173 /* We are going to make a new commit. */
1174 git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1177 * At this point, we need a real merge. No matter what strategy
1178 * we use, it would operate on the index, possibly affecting the
1179 * working tree, and when resolved cleanly, have the desired
1180 * tree in the index -- this means that the index must be in
1181 * sync with the head commit. The strategies are responsible
1184 if (use_strategies_nr
!= 1) {
1186 * Stash away the local changes so that we can try more
1191 memcpy(stash
, null_sha1
, 20);
1194 for (i
= 0; i
< use_strategies_nr
; i
++) {
1197 printf("Rewinding the tree to pristine...\n");
1200 if (use_strategies_nr
!= 1)
1201 printf("Trying merge strategy %s...\n",
1202 use_strategies
[i
]->name
);
1204 * Remember which strategy left the state in the working
1207 wt_strategy
= use_strategies
[i
]->name
;
1209 ret
= try_merge_strategy(use_strategies
[i
]->name
,
1211 if (!option_commit
&& !ret
) {
1214 * This is necessary here just to avoid writing
1215 * the tree, but later we will *not* exit with
1216 * status code 1 because merge_was_ok is set.
1223 * The backend exits with 1 when conflicts are
1224 * left to be resolved, with 2 when it does not
1225 * handle the given merge at all.
1228 int cnt
= evaluate_result();
1230 if (best_cnt
<= 0 || cnt
<= best_cnt
) {
1231 best_strategy
= use_strategies
[i
]->name
;
1241 /* Automerge succeeded. */
1242 write_tree_trivial(result_tree
);
1243 automerge_was_ok
= 1;
1248 * If we have a resulting tree, that means the strategy module
1249 * auto resolved the merge cleanly.
1251 if (automerge_was_ok
)
1252 return finish_automerge(common
, result_tree
, wt_strategy
);
1255 * Pick the result from the best strategy and have the user fix
1258 if (!best_strategy
) {
1260 if (use_strategies_nr
> 1)
1262 "No merge strategy handled the merge.\n");
1264 fprintf(stderr
, "Merge with strategy %s failed.\n",
1265 use_strategies
[0]->name
);
1267 } else if (best_strategy
== wt_strategy
)
1268 ; /* We already have its result in the working tree. */
1270 printf("Rewinding the tree to pristine...\n");
1272 printf("Using the %s to prepare resolving by hand.\n",
1274 try_merge_strategy(best_strategy
, common
, head_arg
);
1281 struct commit_list
*j
;
1283 for (j
= remoteheads
; j
; j
= j
->next
)
1284 strbuf_addf(&buf
, "%s\n",
1285 sha1_to_hex(j
->item
->object
.sha1
));
1286 fd
= open(git_path("MERGE_HEAD"), O_WRONLY
| O_CREAT
, 0666);
1288 die_errno("Could not open '%s' for writing",
1289 git_path("MERGE_HEAD"));
1290 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
)
1291 die_errno("Could not write to '%s'", git_path("MERGE_HEAD"));
1293 strbuf_addch(&merge_msg
, '\n');
1294 fd
= open(git_path("MERGE_MSG"), O_WRONLY
| O_CREAT
, 0666);
1296 die_errno("Could not open '%s' for writing",
1297 git_path("MERGE_MSG"));
1298 if (write_in_full(fd
, merge_msg
.buf
, merge_msg
.len
) !=
1300 die_errno("Could not write to '%s'", git_path("MERGE_MSG"));
1302 fd
= open(git_path("MERGE_MODE"), O_WRONLY
| O_CREAT
| O_TRUNC
, 0666);
1304 die_errno("Could not open '%s' for writing",
1305 git_path("MERGE_MODE"));
1307 if (!allow_fast_forward
)
1308 strbuf_addf(&buf
, "no-ff");
1309 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
)
1310 die_errno("Could not write to '%s'", git_path("MERGE_MODE"));
1315 fprintf(stderr
, "Automatic merge went well; "
1316 "stopped before committing as requested\n");
1319 return suggest_conflicts();