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"
28 #define DEFAULT_TWOHEAD (1<<0)
29 #define DEFAULT_OCTOPUS (1<<1)
30 #define NO_FAST_FORWARD (1<<2)
31 #define NO_TRIVIAL (1<<3)
38 static const char * const builtin_merge_usage
[] = {
39 "git merge [options] <remote>...",
40 "git merge [options] <msg> HEAD <remote>",
44 static int show_diffstat
= 1, option_log
, squash
;
45 static int option_commit
= 1, allow_fast_forward
= 1;
46 static int fast_forward_only
;
47 static int allow_trivial
= 1, have_message
;
48 static struct strbuf merge_msg
;
49 static struct commit_list
*remoteheads
;
50 static unsigned char head
[20], stash
[20];
51 static struct strategy
**use_strategies
;
52 static size_t use_strategies_nr
, use_strategies_alloc
;
53 static const char *branch
;
55 static int allow_rerere_auto
;
57 static struct strategy all_strategy
[] = {
58 { "recursive", DEFAULT_TWOHEAD
| NO_TRIVIAL
},
59 { "octopus", DEFAULT_OCTOPUS
},
61 { "ours", NO_FAST_FORWARD
| NO_TRIVIAL
},
62 { "subtree", NO_FAST_FORWARD
| NO_TRIVIAL
},
65 static const char *pull_twohead
, *pull_octopus
;
67 static int option_parse_message(const struct option
*opt
,
68 const char *arg
, int unset
)
70 struct strbuf
*buf
= opt
->value
;
73 strbuf_setlen(buf
, 0);
75 strbuf_addf(buf
, "%s%s", buf
->len
? "\n\n" : "", arg
);
78 return error("switch `m' requires a value");
82 static struct strategy
*get_strategy(const char *name
)
86 static struct cmdnames main_cmds
, other_cmds
;
92 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
93 if (!strcmp(name
, all_strategy
[i
].name
))
94 return &all_strategy
[i
];
97 struct cmdnames not_strategies
;
100 memset(¬_strategies
, 0, sizeof(struct cmdnames
));
101 load_command_list("git-merge-", &main_cmds
, &other_cmds
);
102 for (i
= 0; i
< main_cmds
.cnt
; i
++) {
104 struct cmdname
*ent
= main_cmds
.names
[i
];
105 for (j
= 0; j
< ARRAY_SIZE(all_strategy
); j
++)
106 if (!strncmp(ent
->name
, all_strategy
[j
].name
, ent
->len
)
107 && !all_strategy
[j
].name
[ent
->len
])
110 add_cmdname(¬_strategies
, ent
->name
, ent
->len
);
112 exclude_cmds(&main_cmds
, ¬_strategies
);
114 if (!is_in_cmdlist(&main_cmds
, name
) && !is_in_cmdlist(&other_cmds
, name
)) {
115 fprintf(stderr
, "Could not find merge strategy '%s'.\n", name
);
116 fprintf(stderr
, "Available strategies are:");
117 for (i
= 0; i
< main_cmds
.cnt
; i
++)
118 fprintf(stderr
, " %s", main_cmds
.names
[i
]->name
);
119 fprintf(stderr
, ".\n");
120 if (other_cmds
.cnt
) {
121 fprintf(stderr
, "Available custom strategies are:");
122 for (i
= 0; i
< other_cmds
.cnt
; i
++)
123 fprintf(stderr
, " %s", other_cmds
.names
[i
]->name
);
124 fprintf(stderr
, ".\n");
129 ret
= xcalloc(1, sizeof(struct strategy
));
130 ret
->name
= xstrdup(name
);
134 static void append_strategy(struct strategy
*s
)
136 ALLOC_GROW(use_strategies
, use_strategies_nr
+ 1, use_strategies_alloc
);
137 use_strategies
[use_strategies_nr
++] = s
;
140 static int option_parse_strategy(const struct option
*opt
,
141 const char *name
, int unset
)
146 append_strategy(get_strategy(name
));
150 static int option_parse_n(const struct option
*opt
,
151 const char *arg
, int unset
)
153 show_diffstat
= unset
;
157 static struct option builtin_merge_options
[] = {
158 { OPTION_CALLBACK
, 'n', NULL
, NULL
, NULL
,
159 "do not show a diffstat at the end of the merge",
160 PARSE_OPT_NOARG
, option_parse_n
},
161 OPT_BOOLEAN(0, "stat", &show_diffstat
,
162 "show a diffstat at the end of the merge"),
163 OPT_BOOLEAN(0, "summary", &show_diffstat
, "(synonym to --stat)"),
164 OPT_BOOLEAN(0, "log", &option_log
,
165 "add list of one-line log to merge commit message"),
166 OPT_BOOLEAN(0, "squash", &squash
,
167 "create a single commit instead of doing a merge"),
168 OPT_BOOLEAN(0, "commit", &option_commit
,
169 "perform a commit if the merge succeeds (default)"),
170 OPT_BOOLEAN(0, "ff", &allow_fast_forward
,
171 "allow fast-forward (default)"),
172 OPT_BOOLEAN(0, "ff-only", &fast_forward_only
,
173 "abort if fast-forward is not possible"),
174 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto
),
175 OPT_CALLBACK('s', "strategy", &use_strategies
, "strategy",
176 "merge strategy to use", option_parse_strategy
),
177 OPT_CALLBACK('m', "message", &merge_msg
, "message",
178 "message to be used for the merge commit (if any)",
179 option_parse_message
),
180 OPT__VERBOSITY(&verbosity
),
184 /* Cleans up metadata that is uninteresting after a succeeded merge. */
185 static void drop_save(void)
187 unlink(git_path("MERGE_HEAD"));
188 unlink(git_path("MERGE_MSG"));
189 unlink(git_path("MERGE_MODE"));
192 static void save_state(void)
195 struct child_process cp
;
196 struct strbuf buffer
= STRBUF_INIT
;
197 const char *argv
[] = {"stash", "create", NULL
};
199 memset(&cp
, 0, sizeof(cp
));
204 if (start_command(&cp
))
205 die("could not run stash.");
206 len
= strbuf_read(&buffer
, cp
.out
, 1024);
209 if (finish_command(&cp
) || len
< 0)
213 strbuf_setlen(&buffer
, buffer
.len
-1);
214 if (get_sha1(buffer
.buf
, stash
))
215 die("not a valid object: %s", buffer
.buf
);
218 static void reset_hard(unsigned const char *sha1
, int verbose
)
223 args
[i
++] = "read-tree";
226 args
[i
++] = "--reset";
228 args
[i
++] = sha1_to_hex(sha1
);
231 if (run_command_v_opt(args
, RUN_GIT_CMD
))
232 die("read-tree failed");
235 static void restore_state(void)
237 struct strbuf sb
= STRBUF_INIT
;
238 const char *args
[] = { "stash", "apply", NULL
, NULL
};
240 if (is_null_sha1(stash
))
245 args
[2] = sha1_to_hex(stash
);
248 * It is OK to ignore error here, for example when there was
249 * nothing to restore.
251 run_command_v_opt(args
, RUN_GIT_CMD
);
254 refresh_cache(REFRESH_QUIET
);
257 /* This is called when no merge was necessary. */
258 static void finish_up_to_date(const char *msg
)
261 printf("%s%s\n", squash
? " (nothing to squash)" : "", msg
);
265 static void squash_message(void)
268 struct commit
*commit
;
269 struct strbuf out
= STRBUF_INIT
;
270 struct commit_list
*j
;
272 struct pretty_print_context ctx
= {0};
274 printf("Squash commit -- not updating HEAD\n");
275 fd
= open(git_path("SQUASH_MSG"), O_WRONLY
| O_CREAT
, 0666);
277 die_errno("Could not write to '%s'", git_path("SQUASH_MSG"));
279 init_revisions(&rev
, NULL
);
280 rev
.ignore_merges
= 1;
281 rev
.commit_format
= CMIT_FMT_MEDIUM
;
283 commit
= lookup_commit(head
);
284 commit
->object
.flags
|= UNINTERESTING
;
285 add_pending_object(&rev
, &commit
->object
, NULL
);
287 for (j
= remoteheads
; j
; j
= j
->next
)
288 add_pending_object(&rev
, &j
->item
->object
, NULL
);
290 setup_revisions(0, NULL
, &rev
, NULL
);
291 if (prepare_revision_walk(&rev
))
292 die("revision walk setup failed");
294 ctx
.abbrev
= rev
.abbrev
;
295 ctx
.date_mode
= rev
.date_mode
;
297 strbuf_addstr(&out
, "Squashed commit of the following:\n");
298 while ((commit
= get_revision(&rev
)) != NULL
) {
299 strbuf_addch(&out
, '\n');
300 strbuf_addf(&out
, "commit %s\n",
301 sha1_to_hex(commit
->object
.sha1
));
302 pretty_print_commit(rev
.commit_format
, commit
, &out
, &ctx
);
304 if (write(fd
, out
.buf
, out
.len
) < 0)
305 die_errno("Writing SQUASH_MSG");
307 die_errno("Finishing SQUASH_MSG");
308 strbuf_release(&out
);
311 static void finish(const unsigned char *new_head
, const char *msg
)
313 struct strbuf reflog_message
= STRBUF_INIT
;
316 strbuf_addstr(&reflog_message
, getenv("GIT_REFLOG_ACTION"));
320 strbuf_addf(&reflog_message
, "%s: %s",
321 getenv("GIT_REFLOG_ACTION"), msg
);
326 if (verbosity
>= 0 && !merge_msg
.len
)
327 printf("No merge message -- not updating HEAD\n");
329 const char *argv_gc_auto
[] = { "gc", "--auto", NULL
};
330 update_ref(reflog_message
.buf
, "HEAD",
334 * We ignore errors in 'gc --auto', since the
335 * user should see them.
337 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
340 if (new_head
&& show_diffstat
) {
341 struct diff_options opts
;
343 opts
.output_format
|=
344 DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
345 opts
.detect_rename
= DIFF_DETECT_RENAME
;
346 if (diff_use_color_default
> 0)
347 DIFF_OPT_SET(&opts
, COLOR_DIFF
);
348 if (diff_setup_done(&opts
) < 0)
349 die("diff_setup_done failed");
350 diff_tree_sha1(head
, new_head
, "", &opts
);
355 /* Run a post-merge hook */
356 run_hook(NULL
, "post-merge", squash
? "1" : "0", NULL
);
358 strbuf_release(&reflog_message
);
361 /* Get the name for the merge commit's message. */
362 static void merge_name(const char *remote
, struct strbuf
*msg
)
364 struct object
*remote_head
;
365 unsigned char branch_head
[20], buf_sha
[20];
366 struct strbuf buf
= STRBUF_INIT
;
367 struct strbuf bname
= STRBUF_INIT
;
372 strbuf_branchname(&bname
, remote
);
375 memset(branch_head
, 0, sizeof(branch_head
));
376 remote_head
= peel_to_type(remote
, 0, NULL
, OBJ_COMMIT
);
378 die("'%s' does not point to a commit", remote
);
380 if (dwim_ref(remote
, strlen(remote
), branch_head
, &found_ref
) > 0) {
381 if (!prefixcmp(found_ref
, "refs/heads/")) {
382 strbuf_addf(msg
, "%s\t\tbranch '%s' of .\n",
383 sha1_to_hex(branch_head
), remote
);
386 if (!prefixcmp(found_ref
, "refs/remotes/")) {
387 strbuf_addf(msg
, "%s\t\tremote branch '%s' of .\n",
388 sha1_to_hex(branch_head
), remote
);
393 /* See if remote matches <name>^^^.. or <name>~<number> */
394 for (len
= 0, ptr
= remote
+ strlen(remote
);
395 remote
< ptr
&& ptr
[-1] == '^';
402 ptr
= strrchr(remote
, '~');
404 int seen_nonzero
= 0;
407 while (*++ptr
&& isdigit(*ptr
)) {
408 seen_nonzero
|= (*ptr
!= '0');
412 len
= 0; /* not ...~<number> */
413 else if (seen_nonzero
)
416 early
= 1; /* "name~" is "name~1"! */
420 struct strbuf truname
= STRBUF_INIT
;
421 strbuf_addstr(&truname
, "refs/heads/");
422 strbuf_addstr(&truname
, remote
);
423 strbuf_setlen(&truname
, truname
.len
- len
);
424 if (resolve_ref(truname
.buf
, buf_sha
, 0, NULL
)) {
426 "%s\t\tbranch '%s'%s of .\n",
427 sha1_to_hex(remote_head
->sha1
),
429 (early
? " (early part)" : ""));
430 strbuf_release(&truname
);
435 if (!strcmp(remote
, "FETCH_HEAD") &&
436 !access(git_path("FETCH_HEAD"), R_OK
)) {
438 struct strbuf line
= STRBUF_INIT
;
441 fp
= fopen(git_path("FETCH_HEAD"), "r");
443 die_errno("could not open '%s' for reading",
444 git_path("FETCH_HEAD"));
445 strbuf_getline(&line
, fp
, '\n');
447 ptr
= strstr(line
.buf
, "\tnot-for-merge\t");
449 strbuf_remove(&line
, ptr
-line
.buf
+1, 13);
450 strbuf_addbuf(msg
, &line
);
451 strbuf_release(&line
);
454 strbuf_addf(msg
, "%s\t\tcommit '%s'\n",
455 sha1_to_hex(remote_head
->sha1
), remote
);
457 strbuf_release(&buf
);
458 strbuf_release(&bname
);
461 static int git_merge_config(const char *k
, const char *v
, void *cb
)
463 if (branch
&& !prefixcmp(k
, "branch.") &&
464 !prefixcmp(k
+ 7, branch
) &&
465 !strcmp(k
+ 7 + strlen(branch
), ".mergeoptions")) {
471 argc
= split_cmdline(buf
, &argv
);
473 die("Bad branch.%s.mergeoptions string", branch
);
474 argv
= xrealloc(argv
, sizeof(*argv
) * (argc
+ 2));
475 memmove(argv
+ 1, argv
, sizeof(*argv
) * (argc
+ 1));
477 parse_options(argc
, argv
, NULL
, builtin_merge_options
,
478 builtin_merge_usage
, 0);
482 if (!strcmp(k
, "merge.diffstat") || !strcmp(k
, "merge.stat"))
483 show_diffstat
= git_config_bool(k
, v
);
484 else if (!strcmp(k
, "pull.twohead"))
485 return git_config_string(&pull_twohead
, k
, v
);
486 else if (!strcmp(k
, "pull.octopus"))
487 return git_config_string(&pull_octopus
, k
, v
);
488 else if (!strcmp(k
, "merge.log") || !strcmp(k
, "merge.summary"))
489 option_log
= git_config_bool(k
, v
);
490 return git_diff_ui_config(k
, v
, cb
);
493 static int read_tree_trivial(unsigned char *common
, unsigned char *head
,
497 struct tree
*trees
[MAX_UNPACK_TREES
];
498 struct tree_desc t
[MAX_UNPACK_TREES
];
499 struct unpack_trees_options opts
;
501 memset(&opts
, 0, sizeof(opts
));
503 opts
.src_index
= &the_index
;
504 opts
.dst_index
= &the_index
;
506 opts
.verbose_update
= 1;
507 opts
.trivial_merges_only
= 1;
509 trees
[nr_trees
] = parse_tree_indirect(common
);
510 if (!trees
[nr_trees
++])
512 trees
[nr_trees
] = parse_tree_indirect(head
);
513 if (!trees
[nr_trees
++])
515 trees
[nr_trees
] = parse_tree_indirect(one
);
516 if (!trees
[nr_trees
++])
518 opts
.fn
= threeway_merge
;
519 cache_tree_free(&active_cache_tree
);
520 for (i
= 0; i
< nr_trees
; i
++) {
521 parse_tree(trees
[i
]);
522 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
524 if (unpack_trees(nr_trees
, t
, &opts
))
529 static void write_tree_trivial(unsigned char *sha1
)
531 if (write_cache_as_tree(sha1
, 0, NULL
))
532 die("git write-tree failed to write a tree");
535 static int try_merge_strategy(const char *strategy
, struct commit_list
*common
,
536 const char *head_arg
)
540 struct commit_list
*j
;
541 struct strbuf buf
= STRBUF_INIT
;
543 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
545 index_fd
= hold_locked_index(lock
, 1);
546 refresh_cache(REFRESH_QUIET
);
547 if (active_cache_changed
&&
548 (write_cache(index_fd
, active_cache
, active_nr
) ||
549 commit_locked_index(lock
)))
550 return error("Unable to write index.");
551 rollback_lock_file(lock
);
553 if (!strcmp(strategy
, "recursive") || !strcmp(strategy
, "subtree")) {
555 struct commit
*result
;
556 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
558 struct commit_list
*reversed
= NULL
;
559 struct merge_options o
;
561 if (remoteheads
->next
) {
562 error("Not handling anything other than two heads merge.");
566 init_merge_options(&o
);
567 if (!strcmp(strategy
, "subtree"))
570 o
.branch1
= head_arg
;
571 o
.branch2
= remoteheads
->item
->util
;
573 for (j
= common
; j
; j
= j
->next
)
574 commit_list_insert(j
->item
, &reversed
);
576 index_fd
= hold_locked_index(lock
, 1);
577 clean
= merge_recursive(&o
, lookup_commit(head
),
578 remoteheads
->item
, reversed
, &result
);
579 if (active_cache_changed
&&
580 (write_cache(index_fd
, active_cache
, active_nr
) ||
581 commit_locked_index(lock
)))
582 die ("unable to write %s", get_index_file());
583 rollback_lock_file(lock
);
584 return clean
? 0 : 1;
586 args
= xmalloc((4 + commit_list_count(common
) +
587 commit_list_count(remoteheads
)) * sizeof(char *));
588 strbuf_addf(&buf
, "merge-%s", strategy
);
590 for (j
= common
; j
; j
= j
->next
)
591 args
[i
++] = xstrdup(sha1_to_hex(j
->item
->object
.sha1
));
593 args
[i
++] = head_arg
;
594 for (j
= remoteheads
; j
; j
= j
->next
)
595 args
[i
++] = xstrdup(sha1_to_hex(j
->item
->object
.sha1
));
597 ret
= run_command_v_opt(args
, RUN_GIT_CMD
);
598 strbuf_release(&buf
);
600 for (j
= common
; j
; j
= j
->next
)
601 free((void *)args
[i
++]);
603 for (j
= remoteheads
; j
; j
= j
->next
)
604 free((void *)args
[i
++]);
607 if (read_cache() < 0)
608 die("failed to read the cache");
613 static void count_diff_files(struct diff_queue_struct
*q
,
614 struct diff_options
*opt
, void *data
)
621 static int count_unmerged_entries(void)
623 const struct index_state
*state
= &the_index
;
626 for (i
= 0; i
< state
->cache_nr
; i
++)
627 if (ce_stage(state
->cache
[i
]))
633 static int checkout_fast_forward(unsigned char *head
, unsigned char *remote
)
635 struct tree
*trees
[MAX_UNPACK_TREES
];
636 struct unpack_trees_options opts
;
637 struct tree_desc t
[MAX_UNPACK_TREES
];
638 int i
, fd
, nr_trees
= 0;
639 struct dir_struct dir
;
640 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
642 refresh_cache(REFRESH_QUIET
);
644 fd
= hold_locked_index(lock_file
, 1);
646 memset(&trees
, 0, sizeof(trees
));
647 memset(&opts
, 0, sizeof(opts
));
648 memset(&t
, 0, sizeof(t
));
649 memset(&dir
, 0, sizeof(dir
));
650 dir
.flags
|= DIR_SHOW_IGNORED
;
651 dir
.exclude_per_dir
= ".gitignore";
655 opts
.src_index
= &the_index
;
656 opts
.dst_index
= &the_index
;
658 opts
.verbose_update
= 1;
660 opts
.fn
= twoway_merge
;
661 opts
.msgs
= get_porcelain_error_msgs();
663 trees
[nr_trees
] = parse_tree_indirect(head
);
664 if (!trees
[nr_trees
++])
666 trees
[nr_trees
] = parse_tree_indirect(remote
);
667 if (!trees
[nr_trees
++])
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
))
675 if (write_cache(fd
, active_cache
, active_nr
) ||
676 commit_locked_index(lock_file
))
677 die("unable to write new index file");
681 static void split_merge_strategies(const char *string
, struct strategy
**list
,
689 buf
= xstrdup(string
);
694 ALLOC_GROW(*list
, *nr
+ 1, *alloc
);
695 (*list
)[(*nr
)++].name
= xstrdup(q
);
700 ALLOC_GROW(*list
, *nr
+ 1, *alloc
);
701 (*list
)[(*nr
)++].name
= xstrdup(q
);
707 static void add_strategies(const char *string
, unsigned attr
)
709 struct strategy
*list
= NULL
;
710 int list_alloc
= 0, list_nr
= 0, i
;
712 memset(&list
, 0, sizeof(list
));
713 split_merge_strategies(string
, &list
, &list_nr
, &list_alloc
);
715 for (i
= 0; i
< list_nr
; i
++)
716 append_strategy(get_strategy(list
[i
].name
));
719 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
720 if (all_strategy
[i
].attr
& attr
)
721 append_strategy(&all_strategy
[i
]);
725 static int merge_trivial(void)
727 unsigned char result_tree
[20], result_commit
[20];
728 struct commit_list
*parent
= xmalloc(sizeof(*parent
));
730 write_tree_trivial(result_tree
);
731 printf("Wonderful.\n");
732 parent
->item
= lookup_commit(head
);
733 parent
->next
= xmalloc(sizeof(*parent
->next
));
734 parent
->next
->item
= remoteheads
->item
;
735 parent
->next
->next
= NULL
;
736 commit_tree(merge_msg
.buf
, result_tree
, parent
, result_commit
, NULL
);
737 finish(result_commit
, "In-index merge");
742 static int finish_automerge(struct commit_list
*common
,
743 unsigned char *result_tree
,
744 const char *wt_strategy
)
746 struct commit_list
*parents
= NULL
, *j
;
747 struct strbuf buf
= STRBUF_INIT
;
748 unsigned char result_commit
[20];
750 free_commit_list(common
);
751 if (allow_fast_forward
) {
752 parents
= remoteheads
;
753 commit_list_insert(lookup_commit(head
), &parents
);
754 parents
= reduce_heads(parents
);
756 struct commit_list
**pptr
= &parents
;
758 pptr
= &commit_list_insert(lookup_commit(head
),
760 for (j
= remoteheads
; j
; j
= j
->next
)
761 pptr
= &commit_list_insert(j
->item
, pptr
)->next
;
763 free_commit_list(remoteheads
);
764 strbuf_addch(&merge_msg
, '\n');
765 commit_tree(merge_msg
.buf
, result_tree
, parents
, result_commit
, NULL
);
766 strbuf_addf(&buf
, "Merge made by %s.", wt_strategy
);
767 finish(result_commit
, buf
.buf
);
768 strbuf_release(&buf
);
773 static int suggest_conflicts(void)
778 fp
= fopen(git_path("MERGE_MSG"), "a");
780 die_errno("Could not open '%s' for writing",
781 git_path("MERGE_MSG"));
782 fprintf(fp
, "\nConflicts:\n");
783 for (pos
= 0; pos
< active_nr
; pos
++) {
784 struct cache_entry
*ce
= active_cache
[pos
];
787 fprintf(fp
, "\t%s\n", ce
->name
);
788 while (pos
+ 1 < active_nr
&&
790 active_cache
[pos
+ 1]->name
))
795 rerere(allow_rerere_auto
);
796 printf("Automatic merge failed; "
797 "fix conflicts and then commit the result.\n");
801 static struct commit
*is_old_style_invocation(int argc
, const char **argv
)
803 struct commit
*second_token
= NULL
;
805 unsigned char second_sha1
[20];
807 if (get_sha1(argv
[1], second_sha1
))
809 second_token
= lookup_commit_reference_gently(second_sha1
, 0);
811 die("'%s' is not a commit", argv
[1]);
812 if (hashcmp(second_token
->object
.sha1
, head
))
818 static int evaluate_result(void)
823 /* Check how many files differ. */
824 init_revisions(&rev
, "");
825 setup_revisions(0, NULL
, &rev
, NULL
);
826 rev
.diffopt
.output_format
|=
827 DIFF_FORMAT_CALLBACK
;
828 rev
.diffopt
.format_callback
= count_diff_files
;
829 rev
.diffopt
.format_callback_data
= &cnt
;
830 run_diff_files(&rev
, 0);
833 * Check how many unmerged entries are
836 cnt
+= count_unmerged_entries();
841 int cmd_merge(int argc
, const char **argv
, const char *prefix
)
843 unsigned char result_tree
[20];
844 struct strbuf buf
= STRBUF_INIT
;
845 const char *head_arg
;
846 int flag
, head_invalid
= 0, i
;
847 int best_cnt
= -1, merge_was_ok
= 0, automerge_was_ok
= 0;
848 struct commit_list
*common
= NULL
;
849 const char *best_strategy
= NULL
, *wt_strategy
= NULL
;
850 struct commit_list
**remotes
= &remoteheads
;
852 if (file_exists(git_path("MERGE_HEAD")))
853 die("You have not concluded your merge. (MERGE_HEAD exists)");
854 if (read_cache_unmerged())
855 die("You are in the middle of a conflicted merge."
856 " (index unmerged)");
859 * Check if we are _not_ on a detached HEAD, i.e. if there is a
862 branch
= resolve_ref("HEAD", head
, 0, &flag
);
863 if (branch
&& !prefixcmp(branch
, "refs/heads/"))
865 if (is_null_sha1(head
))
868 git_config(git_merge_config
, NULL
);
871 if (diff_use_color_default
== -1)
872 diff_use_color_default
= git_use_color_default
;
874 argc
= parse_options(argc
, argv
, prefix
, builtin_merge_options
,
875 builtin_merge_usage
, 0);
880 if (!allow_fast_forward
)
881 die("You cannot combine --squash with --no-ff.");
885 if (!allow_fast_forward
&& fast_forward_only
)
886 die("You cannot combine --no-ff with --ff-only.");
889 usage_with_options(builtin_merge_usage
,
890 builtin_merge_options
);
893 * This could be traditional "merge <msg> HEAD <commit>..." and
894 * the way we can tell it is to see if the second token is HEAD,
895 * but some people might have misused the interface and used a
896 * committish that is the same as HEAD there instead.
897 * Traditional format never would have "-m" so it is an
898 * additional safety measure to check for it.
901 if (!have_message
&& is_old_style_invocation(argc
, argv
)) {
902 strbuf_addstr(&merge_msg
, argv
[0]);
906 } else if (head_invalid
) {
907 struct object
*remote_head
;
909 * If the merged head is a valid one there is no reason
910 * to forbid "git merge" into a branch yet to be born.
911 * We do the same for "git pull".
914 die("Can merge only exactly one commit into "
917 die("Squash commit into empty head not supported yet");
918 if (!allow_fast_forward
)
919 die("Non-fast-forward commit does not make sense into "
921 remote_head
= peel_to_type(argv
[0], 0, NULL
, OBJ_COMMIT
);
923 die("%s - not something we can merge", argv
[0]);
924 update_ref("initial pull", "HEAD", remote_head
->sha1
, NULL
, 0,
926 reset_hard(remote_head
->sha1
, 0);
929 struct strbuf msg
= STRBUF_INIT
;
931 /* We are invoked directly as the first-class UI. */
935 * All the rest are the commits being merged;
936 * prepare the standard merge summary message to
937 * be appended to the given message. If remote
938 * is invalid we will die later in the common
939 * codepath so we discard the error in this
943 for (i
= 0; i
< argc
; i
++)
944 merge_name(argv
[i
], &msg
);
945 fmt_merge_msg(option_log
, &msg
, &merge_msg
);
947 strbuf_setlen(&merge_msg
, merge_msg
.len
-1);
951 if (head_invalid
|| !argc
)
952 usage_with_options(builtin_merge_usage
,
953 builtin_merge_options
);
955 strbuf_addstr(&buf
, "merge");
956 for (i
= 0; i
< argc
; i
++)
957 strbuf_addf(&buf
, " %s", argv
[i
]);
958 setenv("GIT_REFLOG_ACTION", buf
.buf
, 0);
961 for (i
= 0; i
< argc
; i
++) {
963 struct commit
*commit
;
965 o
= peel_to_type(argv
[i
], 0, NULL
, OBJ_COMMIT
);
967 die("%s - not something we can merge", argv
[i
]);
968 commit
= lookup_commit(o
->sha1
);
969 commit
->util
= (void *)argv
[i
];
970 remotes
= &commit_list_insert(commit
, remotes
)->next
;
972 strbuf_addf(&buf
, "GITHEAD_%s", sha1_to_hex(o
->sha1
));
973 setenv(buf
.buf
, argv
[i
], 1);
977 if (!use_strategies
) {
978 if (!remoteheads
->next
)
979 add_strategies(pull_twohead
, DEFAULT_TWOHEAD
);
981 add_strategies(pull_octopus
, DEFAULT_OCTOPUS
);
984 for (i
= 0; i
< use_strategies_nr
; i
++) {
985 if (use_strategies
[i
]->attr
& NO_FAST_FORWARD
)
986 allow_fast_forward
= 0;
987 if (use_strategies
[i
]->attr
& NO_TRIVIAL
)
991 if (!remoteheads
->next
)
992 common
= get_merge_bases(lookup_commit(head
),
993 remoteheads
->item
, 1);
995 struct commit_list
*list
= remoteheads
;
996 commit_list_insert(lookup_commit(head
), &list
);
997 common
= get_octopus_merge_bases(list
);
1001 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head
, NULL
, 0,
1005 ; /* No common ancestors found. We need a real merge. */
1006 else if (!remoteheads
->next
&& !common
->next
&&
1007 common
->item
== remoteheads
->item
) {
1009 * If head can reach all the merge then we are up to date.
1010 * but first the most common case of merging one remote.
1012 finish_up_to_date("Already up-to-date.");
1014 } else if (allow_fast_forward
&& !remoteheads
->next
&&
1016 !hashcmp(common
->item
->object
.sha1
, head
)) {
1017 /* Again the most common case of merging one remote. */
1018 struct strbuf msg
= STRBUF_INIT
;
1022 strcpy(hex
, find_unique_abbrev(head
, DEFAULT_ABBREV
));
1025 printf("Updating %s..%s\n",
1027 find_unique_abbrev(remoteheads
->item
->object
.sha1
,
1029 strbuf_addstr(&msg
, "Fast-forward");
1032 " (no commit created; -m option ignored)");
1033 o
= peel_to_type(sha1_to_hex(remoteheads
->item
->object
.sha1
),
1034 0, NULL
, OBJ_COMMIT
);
1038 if (checkout_fast_forward(head
, remoteheads
->item
->object
.sha1
))
1041 finish(o
->sha1
, msg
.buf
);
1044 } else if (!remoteheads
->next
&& common
->next
)
1047 * We are not doing octopus and not fast-forward. Need
1050 else if (!remoteheads
->next
&& !common
->next
&& option_commit
) {
1052 * We are not doing octopus, not fast-forward, and have
1055 refresh_cache(REFRESH_QUIET
);
1056 if (allow_trivial
&& !fast_forward_only
) {
1057 /* See if it is really trivial. */
1058 git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1059 printf("Trying really trivial in-index merge...\n");
1060 if (!read_tree_trivial(common
->item
->object
.sha1
,
1061 head
, remoteheads
->item
->object
.sha1
))
1062 return merge_trivial();
1067 * An octopus. If we can reach all the remote we are up
1071 struct commit_list
*j
;
1073 for (j
= remoteheads
; j
; j
= j
->next
) {
1074 struct commit_list
*common_one
;
1077 * Here we *have* to calculate the individual
1078 * merge_bases again, otherwise "git merge HEAD^
1079 * HEAD^^" would be missed.
1081 common_one
= get_merge_bases(lookup_commit(head
),
1083 if (hashcmp(common_one
->item
->object
.sha1
,
1084 j
->item
->object
.sha1
)) {
1090 finish_up_to_date("Already up-to-date. Yeeah!");
1095 if (fast_forward_only
)
1096 die("Not possible to fast-forward, aborting.");
1098 /* We are going to make a new commit. */
1099 git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1102 * At this point, we need a real merge. No matter what strategy
1103 * we use, it would operate on the index, possibly affecting the
1104 * working tree, and when resolved cleanly, have the desired
1105 * tree in the index -- this means that the index must be in
1106 * sync with the head commit. The strategies are responsible
1109 if (use_strategies_nr
!= 1) {
1111 * Stash away the local changes so that we can try more
1116 memcpy(stash
, null_sha1
, 20);
1119 for (i
= 0; i
< use_strategies_nr
; i
++) {
1122 printf("Rewinding the tree to pristine...\n");
1125 if (use_strategies_nr
!= 1)
1126 printf("Trying merge strategy %s...\n",
1127 use_strategies
[i
]->name
);
1129 * Remember which strategy left the state in the working
1132 wt_strategy
= use_strategies
[i
]->name
;
1134 ret
= try_merge_strategy(use_strategies
[i
]->name
,
1136 if (!option_commit
&& !ret
) {
1139 * This is necessary here just to avoid writing
1140 * the tree, but later we will *not* exit with
1141 * status code 1 because merge_was_ok is set.
1148 * The backend exits with 1 when conflicts are
1149 * left to be resolved, with 2 when it does not
1150 * handle the given merge at all.
1153 int cnt
= evaluate_result();
1155 if (best_cnt
<= 0 || cnt
<= best_cnt
) {
1156 best_strategy
= use_strategies
[i
]->name
;
1166 /* Automerge succeeded. */
1167 write_tree_trivial(result_tree
);
1168 automerge_was_ok
= 1;
1173 * If we have a resulting tree, that means the strategy module
1174 * auto resolved the merge cleanly.
1176 if (automerge_was_ok
)
1177 return finish_automerge(common
, result_tree
, wt_strategy
);
1180 * Pick the result from the best strategy and have the user fix
1183 if (!best_strategy
) {
1185 if (use_strategies_nr
> 1)
1187 "No merge strategy handled the merge.\n");
1189 fprintf(stderr
, "Merge with strategy %s failed.\n",
1190 use_strategies
[0]->name
);
1192 } else if (best_strategy
== wt_strategy
)
1193 ; /* We already have its result in the working tree. */
1195 printf("Rewinding the tree to pristine...\n");
1197 printf("Using the %s to prepare resolving by hand.\n",
1199 try_merge_strategy(best_strategy
, common
, head_arg
);
1206 struct commit_list
*j
;
1208 for (j
= remoteheads
; j
; j
= j
->next
)
1209 strbuf_addf(&buf
, "%s\n",
1210 sha1_to_hex(j
->item
->object
.sha1
));
1211 fd
= open(git_path("MERGE_HEAD"), O_WRONLY
| O_CREAT
, 0666);
1213 die_errno("Could not open '%s' for writing",
1214 git_path("MERGE_HEAD"));
1215 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
)
1216 die_errno("Could not write to '%s'", git_path("MERGE_HEAD"));
1218 strbuf_addch(&merge_msg
, '\n');
1219 fd
= open(git_path("MERGE_MSG"), O_WRONLY
| O_CREAT
, 0666);
1221 die_errno("Could not open '%s' for writing",
1222 git_path("MERGE_MSG"));
1223 if (write_in_full(fd
, merge_msg
.buf
, merge_msg
.len
) !=
1225 die_errno("Could not write to '%s'", git_path("MERGE_MSG"));
1227 fd
= open(git_path("MERGE_MODE"), O_WRONLY
| O_CREAT
| O_TRUNC
, 0666);
1229 die_errno("Could not open '%s' for writing",
1230 git_path("MERGE_MODE"));
1232 if (!allow_fast_forward
)
1233 strbuf_addf(&buf
, "no-ff");
1234 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
)
1235 die_errno("Could not write to '%s'", git_path("MERGE_MODE"));
1240 fprintf(stderr
, "Automatic merge went well; "
1241 "stopped before committing as requested\n");
1244 return suggest_conflicts();