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
;
56 static struct strategy all_strategy
[] = {
57 { "recursive", DEFAULT_TWOHEAD
| NO_TRIVIAL
},
58 { "octopus", DEFAULT_OCTOPUS
},
60 { "ours", NO_FAST_FORWARD
| NO_TRIVIAL
},
61 { "subtree", NO_FAST_FORWARD
| NO_TRIVIAL
},
64 static const char *pull_twohead
, *pull_octopus
;
66 static int option_parse_message(const struct option
*opt
,
67 const char *arg
, int unset
)
69 struct strbuf
*buf
= opt
->value
;
72 strbuf_setlen(buf
, 0);
74 strbuf_addf(buf
, "%s\n\n", arg
);
77 return error("switch `m' requires a value");
81 static struct strategy
*get_strategy(const char *name
)
85 static struct cmdnames main_cmds
, other_cmds
;
91 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
92 if (!strcmp(name
, all_strategy
[i
].name
))
93 return &all_strategy
[i
];
96 struct cmdnames not_strategies
;
99 memset(¬_strategies
, 0, sizeof(struct cmdnames
));
100 load_command_list("git-merge-", &main_cmds
, &other_cmds
);
101 for (i
= 0; i
< main_cmds
.cnt
; i
++) {
103 struct cmdname
*ent
= main_cmds
.names
[i
];
104 for (j
= 0; j
< ARRAY_SIZE(all_strategy
); j
++)
105 if (!strncmp(ent
->name
, all_strategy
[j
].name
, ent
->len
)
106 && !all_strategy
[j
].name
[ent
->len
])
109 add_cmdname(¬_strategies
, ent
->name
, ent
->len
);
111 exclude_cmds(&main_cmds
, ¬_strategies
);
113 if (!is_in_cmdlist(&main_cmds
, name
) && !is_in_cmdlist(&other_cmds
, name
)) {
114 fprintf(stderr
, "Could not find merge strategy '%s'.\n", name
);
115 fprintf(stderr
, "Available strategies are:");
116 for (i
= 0; i
< main_cmds
.cnt
; i
++)
117 fprintf(stderr
, " %s", main_cmds
.names
[i
]->name
);
118 fprintf(stderr
, ".\n");
119 if (other_cmds
.cnt
) {
120 fprintf(stderr
, "Available custom strategies are:");
121 for (i
= 0; i
< other_cmds
.cnt
; i
++)
122 fprintf(stderr
, " %s", other_cmds
.names
[i
]->name
);
123 fprintf(stderr
, ".\n");
128 ret
= xcalloc(1, sizeof(struct strategy
));
129 ret
->name
= xstrdup(name
);
133 static void append_strategy(struct strategy
*s
)
135 ALLOC_GROW(use_strategies
, use_strategies_nr
+ 1, use_strategies_alloc
);
136 use_strategies
[use_strategies_nr
++] = s
;
139 static int option_parse_strategy(const struct option
*opt
,
140 const char *name
, int unset
)
145 append_strategy(get_strategy(name
));
149 static int option_parse_n(const struct option
*opt
,
150 const char *arg
, int unset
)
152 show_diffstat
= unset
;
156 static struct option builtin_merge_options
[] = {
157 { OPTION_CALLBACK
, 'n', NULL
, NULL
, NULL
,
158 "do not show a diffstat at the end of the merge",
159 PARSE_OPT_NOARG
, option_parse_n
},
160 OPT_BOOLEAN(0, "stat", &show_diffstat
,
161 "show a diffstat at the end of the merge"),
162 OPT_BOOLEAN(0, "summary", &show_diffstat
, "(synonym to --stat)"),
163 OPT_BOOLEAN(0, "log", &option_log
,
164 "add list of one-line log to merge commit message"),
165 OPT_BOOLEAN(0, "squash", &squash
,
166 "create a single commit instead of doing a merge"),
167 OPT_BOOLEAN(0, "commit", &option_commit
,
168 "perform a commit if the merge succeeds (default)"),
169 OPT_BOOLEAN(0, "ff", &allow_fast_forward
,
170 "allow fast-forward (default)"),
171 OPT_BOOLEAN(0, "ff-only", &fast_forward_only
,
172 "abort if fast-forward is not possible"),
173 OPT_CALLBACK('s', "strategy", &use_strategies
, "strategy",
174 "merge strategy to use", option_parse_strategy
),
175 OPT_CALLBACK('m', "message", &merge_msg
, "message",
176 "message to be used for the merge commit (if any)",
177 option_parse_message
),
178 OPT__VERBOSITY(&verbosity
),
182 /* Cleans up metadata that is uninteresting after a succeeded merge. */
183 static void drop_save(void)
185 unlink(git_path("MERGE_HEAD"));
186 unlink(git_path("MERGE_MSG"));
187 unlink(git_path("MERGE_MODE"));
190 static void save_state(void)
193 struct child_process cp
;
194 struct strbuf buffer
= STRBUF_INIT
;
195 const char *argv
[] = {"stash", "create", NULL
};
197 memset(&cp
, 0, sizeof(cp
));
202 if (start_command(&cp
))
203 die("could not run stash.");
204 len
= strbuf_read(&buffer
, cp
.out
, 1024);
207 if (finish_command(&cp
) || len
< 0)
211 strbuf_setlen(&buffer
, buffer
.len
-1);
212 if (get_sha1(buffer
.buf
, stash
))
213 die("not a valid object: %s", buffer
.buf
);
216 static void reset_hard(unsigned const char *sha1
, int verbose
)
221 args
[i
++] = "read-tree";
224 args
[i
++] = "--reset";
226 args
[i
++] = sha1_to_hex(sha1
);
229 if (run_command_v_opt(args
, RUN_GIT_CMD
))
230 die("read-tree failed");
233 static void restore_state(void)
235 struct strbuf sb
= STRBUF_INIT
;
236 const char *args
[] = { "stash", "apply", NULL
, NULL
};
238 if (is_null_sha1(stash
))
243 args
[2] = sha1_to_hex(stash
);
246 * It is OK to ignore error here, for example when there was
247 * nothing to restore.
249 run_command_v_opt(args
, RUN_GIT_CMD
);
252 refresh_cache(REFRESH_QUIET
);
255 /* This is called when no merge was necessary. */
256 static void finish_up_to_date(const char *msg
)
259 printf("%s%s\n", squash
? " (nothing to squash)" : "", msg
);
263 static void squash_message(void)
266 struct commit
*commit
;
267 struct strbuf out
= STRBUF_INIT
;
268 struct commit_list
*j
;
270 struct pretty_print_context ctx
= {0};
272 printf("Squash commit -- not updating HEAD\n");
273 fd
= open(git_path("SQUASH_MSG"), O_WRONLY
| O_CREAT
, 0666);
275 die_errno("Could not write to '%s'", git_path("SQUASH_MSG"));
277 init_revisions(&rev
, NULL
);
278 rev
.ignore_merges
= 1;
279 rev
.commit_format
= CMIT_FMT_MEDIUM
;
281 commit
= lookup_commit(head
);
282 commit
->object
.flags
|= UNINTERESTING
;
283 add_pending_object(&rev
, &commit
->object
, NULL
);
285 for (j
= remoteheads
; j
; j
= j
->next
)
286 add_pending_object(&rev
, &j
->item
->object
, NULL
);
288 setup_revisions(0, NULL
, &rev
, NULL
);
289 if (prepare_revision_walk(&rev
))
290 die("revision walk setup failed");
292 ctx
.abbrev
= rev
.abbrev
;
293 ctx
.date_mode
= rev
.date_mode
;
295 strbuf_addstr(&out
, "Squashed commit of the following:\n");
296 while ((commit
= get_revision(&rev
)) != NULL
) {
297 strbuf_addch(&out
, '\n');
298 strbuf_addf(&out
, "commit %s\n",
299 sha1_to_hex(commit
->object
.sha1
));
300 pretty_print_commit(rev
.commit_format
, commit
, &out
, &ctx
);
302 if (write(fd
, out
.buf
, out
.len
) < 0)
303 die_errno("Writing SQUASH_MSG");
305 die_errno("Finishing SQUASH_MSG");
306 strbuf_release(&out
);
309 static void finish(const unsigned char *new_head
, const char *msg
)
311 struct strbuf reflog_message
= STRBUF_INIT
;
314 strbuf_addstr(&reflog_message
, getenv("GIT_REFLOG_ACTION"));
318 strbuf_addf(&reflog_message
, "%s: %s",
319 getenv("GIT_REFLOG_ACTION"), msg
);
324 if (verbosity
>= 0 && !merge_msg
.len
)
325 printf("No merge message -- not updating HEAD\n");
327 const char *argv_gc_auto
[] = { "gc", "--auto", NULL
};
328 update_ref(reflog_message
.buf
, "HEAD",
332 * We ignore errors in 'gc --auto', since the
333 * user should see them.
335 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
338 if (new_head
&& show_diffstat
) {
339 struct diff_options opts
;
341 opts
.output_format
|=
342 DIFF_FORMAT_SUMMARY
| DIFF_FORMAT_DIFFSTAT
;
343 opts
.detect_rename
= DIFF_DETECT_RENAME
;
344 if (diff_use_color_default
> 0)
345 DIFF_OPT_SET(&opts
, COLOR_DIFF
);
346 if (diff_setup_done(&opts
) < 0)
347 die("diff_setup_done failed");
348 diff_tree_sha1(head
, new_head
, "", &opts
);
353 /* Run a post-merge hook */
354 run_hook(NULL
, "post-merge", squash
? "1" : "0", NULL
);
356 strbuf_release(&reflog_message
);
359 /* Get the name for the merge commit's message. */
360 static void merge_name(const char *remote
, struct strbuf
*msg
)
362 struct object
*remote_head
;
363 unsigned char branch_head
[20], buf_sha
[20];
364 struct strbuf buf
= STRBUF_INIT
;
365 struct strbuf bname
= STRBUF_INIT
;
370 strbuf_branchname(&bname
, remote
);
373 memset(branch_head
, 0, sizeof(branch_head
));
374 remote_head
= peel_to_type(remote
, 0, NULL
, OBJ_COMMIT
);
376 die("'%s' does not point to a commit", remote
);
378 if (dwim_ref(remote
, strlen(remote
), branch_head
, &found_ref
) > 0) {
379 if (!prefixcmp(found_ref
, "refs/heads/")) {
380 strbuf_addf(msg
, "%s\t\tbranch '%s' of .\n",
381 sha1_to_hex(branch_head
), remote
);
384 if (!prefixcmp(found_ref
, "refs/remotes/")) {
385 strbuf_addf(msg
, "%s\t\tremote branch '%s' of .\n",
386 sha1_to_hex(branch_head
), remote
);
391 /* See if remote matches <name>^^^.. or <name>~<number> */
392 for (len
= 0, ptr
= remote
+ strlen(remote
);
393 remote
< ptr
&& ptr
[-1] == '^';
400 ptr
= strrchr(remote
, '~');
402 int seen_nonzero
= 0;
405 while (*++ptr
&& isdigit(*ptr
)) {
406 seen_nonzero
|= (*ptr
!= '0');
410 len
= 0; /* not ...~<number> */
411 else if (seen_nonzero
)
414 early
= 1; /* "name~" is "name~1"! */
418 struct strbuf truname
= STRBUF_INIT
;
419 strbuf_addstr(&truname
, "refs/heads/");
420 strbuf_addstr(&truname
, remote
);
421 strbuf_setlen(&truname
, truname
.len
- len
);
422 if (resolve_ref(truname
.buf
, buf_sha
, 0, NULL
)) {
424 "%s\t\tbranch '%s'%s of .\n",
425 sha1_to_hex(remote_head
->sha1
),
427 (early
? " (early part)" : ""));
428 strbuf_release(&truname
);
433 if (!strcmp(remote
, "FETCH_HEAD") &&
434 !access(git_path("FETCH_HEAD"), R_OK
)) {
436 struct strbuf line
= STRBUF_INIT
;
439 fp
= fopen(git_path("FETCH_HEAD"), "r");
441 die_errno("could not open '%s' for reading",
442 git_path("FETCH_HEAD"));
443 strbuf_getline(&line
, fp
, '\n');
445 ptr
= strstr(line
.buf
, "\tnot-for-merge\t");
447 strbuf_remove(&line
, ptr
-line
.buf
+1, 13);
448 strbuf_addbuf(msg
, &line
);
449 strbuf_release(&line
);
452 strbuf_addf(msg
, "%s\t\tcommit '%s'\n",
453 sha1_to_hex(remote_head
->sha1
), remote
);
455 strbuf_release(&buf
);
456 strbuf_release(&bname
);
459 static int git_merge_config(const char *k
, const char *v
, void *cb
)
461 if (branch
&& !prefixcmp(k
, "branch.") &&
462 !prefixcmp(k
+ 7, branch
) &&
463 !strcmp(k
+ 7 + strlen(branch
), ".mergeoptions")) {
469 argc
= split_cmdline(buf
, &argv
);
471 die("Bad branch.%s.mergeoptions string", branch
);
472 argv
= xrealloc(argv
, sizeof(*argv
) * (argc
+ 2));
473 memmove(argv
+ 1, argv
, sizeof(*argv
) * (argc
+ 1));
475 parse_options(argc
, argv
, NULL
, builtin_merge_options
,
476 builtin_merge_usage
, 0);
480 if (!strcmp(k
, "merge.diffstat") || !strcmp(k
, "merge.stat"))
481 show_diffstat
= git_config_bool(k
, v
);
482 else if (!strcmp(k
, "pull.twohead"))
483 return git_config_string(&pull_twohead
, k
, v
);
484 else if (!strcmp(k
, "pull.octopus"))
485 return git_config_string(&pull_octopus
, k
, v
);
486 else if (!strcmp(k
, "merge.log") || !strcmp(k
, "merge.summary"))
487 option_log
= git_config_bool(k
, v
);
488 return git_diff_ui_config(k
, v
, cb
);
491 static int read_tree_trivial(unsigned char *common
, unsigned char *head
,
495 struct tree
*trees
[MAX_UNPACK_TREES
];
496 struct tree_desc t
[MAX_UNPACK_TREES
];
497 struct unpack_trees_options opts
;
499 memset(&opts
, 0, sizeof(opts
));
501 opts
.src_index
= &the_index
;
502 opts
.dst_index
= &the_index
;
504 opts
.verbose_update
= 1;
505 opts
.trivial_merges_only
= 1;
507 trees
[nr_trees
] = parse_tree_indirect(common
);
508 if (!trees
[nr_trees
++])
510 trees
[nr_trees
] = parse_tree_indirect(head
);
511 if (!trees
[nr_trees
++])
513 trees
[nr_trees
] = parse_tree_indirect(one
);
514 if (!trees
[nr_trees
++])
516 opts
.fn
= threeway_merge
;
517 cache_tree_free(&active_cache_tree
);
518 for (i
= 0; i
< nr_trees
; i
++) {
519 parse_tree(trees
[i
]);
520 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
522 if (unpack_trees(nr_trees
, t
, &opts
))
527 static void write_tree_trivial(unsigned char *sha1
)
529 if (write_cache_as_tree(sha1
, 0, NULL
))
530 die("git write-tree failed to write a tree");
533 static int try_merge_strategy(const char *strategy
, struct commit_list
*common
,
534 const char *head_arg
)
538 struct commit_list
*j
;
539 struct strbuf buf
= STRBUF_INIT
;
541 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
543 index_fd
= hold_locked_index(lock
, 1);
544 refresh_cache(REFRESH_QUIET
);
545 if (active_cache_changed
&&
546 (write_cache(index_fd
, active_cache
, active_nr
) ||
547 commit_locked_index(lock
)))
548 return error("Unable to write index.");
549 rollback_lock_file(lock
);
551 if (!strcmp(strategy
, "recursive") || !strcmp(strategy
, "subtree")) {
553 struct commit
*result
;
554 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
556 struct commit_list
*reversed
= NULL
;
557 struct merge_options o
;
559 if (remoteheads
->next
) {
560 error("Not handling anything other than two heads merge.");
564 init_merge_options(&o
);
565 if (!strcmp(strategy
, "subtree"))
568 o
.branch1
= head_arg
;
569 o
.branch2
= remoteheads
->item
->util
;
571 for (j
= common
; j
; j
= j
->next
)
572 commit_list_insert(j
->item
, &reversed
);
574 index_fd
= hold_locked_index(lock
, 1);
575 clean
= merge_recursive(&o
, lookup_commit(head
),
576 remoteheads
->item
, reversed
, &result
);
577 if (active_cache_changed
&&
578 (write_cache(index_fd
, active_cache
, active_nr
) ||
579 commit_locked_index(lock
)))
580 die ("unable to write %s", get_index_file());
581 rollback_lock_file(lock
);
582 return clean
? 0 : 1;
584 args
= xmalloc((4 + commit_list_count(common
) +
585 commit_list_count(remoteheads
)) * sizeof(char *));
586 strbuf_addf(&buf
, "merge-%s", strategy
);
588 for (j
= common
; j
; j
= j
->next
)
589 args
[i
++] = xstrdup(sha1_to_hex(j
->item
->object
.sha1
));
591 args
[i
++] = head_arg
;
592 for (j
= remoteheads
; j
; j
= j
->next
)
593 args
[i
++] = xstrdup(sha1_to_hex(j
->item
->object
.sha1
));
595 ret
= run_command_v_opt(args
, RUN_GIT_CMD
);
596 strbuf_release(&buf
);
598 for (j
= common
; j
; j
= j
->next
)
599 free((void *)args
[i
++]);
601 for (j
= remoteheads
; j
; j
= j
->next
)
602 free((void *)args
[i
++]);
605 if (read_cache() < 0)
606 die("failed to read the cache");
611 static void count_diff_files(struct diff_queue_struct
*q
,
612 struct diff_options
*opt
, void *data
)
619 static int count_unmerged_entries(void)
621 const struct index_state
*state
= &the_index
;
624 for (i
= 0; i
< state
->cache_nr
; i
++)
625 if (ce_stage(state
->cache
[i
]))
631 static int checkout_fast_forward(unsigned char *head
, unsigned char *remote
)
633 struct tree
*trees
[MAX_UNPACK_TREES
];
634 struct unpack_trees_options opts
;
635 struct tree_desc t
[MAX_UNPACK_TREES
];
636 int i
, fd
, nr_trees
= 0;
637 struct dir_struct dir
;
638 struct lock_file
*lock_file
= xcalloc(1, sizeof(struct lock_file
));
640 refresh_cache(REFRESH_QUIET
);
642 fd
= hold_locked_index(lock_file
, 1);
644 memset(&trees
, 0, sizeof(trees
));
645 memset(&opts
, 0, sizeof(opts
));
646 memset(&t
, 0, sizeof(t
));
647 memset(&dir
, 0, sizeof(dir
));
648 dir
.flags
|= DIR_SHOW_IGNORED
;
649 dir
.exclude_per_dir
= ".gitignore";
653 opts
.src_index
= &the_index
;
654 opts
.dst_index
= &the_index
;
656 opts
.verbose_update
= 1;
658 opts
.fn
= twoway_merge
;
659 opts
.msgs
= get_porcelain_error_msgs();
661 trees
[nr_trees
] = parse_tree_indirect(head
);
662 if (!trees
[nr_trees
++])
664 trees
[nr_trees
] = parse_tree_indirect(remote
);
665 if (!trees
[nr_trees
++])
667 for (i
= 0; i
< nr_trees
; i
++) {
668 parse_tree(trees
[i
]);
669 init_tree_desc(t
+i
, trees
[i
]->buffer
, trees
[i
]->size
);
671 if (unpack_trees(nr_trees
, t
, &opts
))
673 if (write_cache(fd
, active_cache
, active_nr
) ||
674 commit_locked_index(lock_file
))
675 die("unable to write new index file");
679 static void split_merge_strategies(const char *string
, struct strategy
**list
,
687 buf
= xstrdup(string
);
692 ALLOC_GROW(*list
, *nr
+ 1, *alloc
);
693 (*list
)[(*nr
)++].name
= xstrdup(q
);
698 ALLOC_GROW(*list
, *nr
+ 1, *alloc
);
699 (*list
)[(*nr
)++].name
= xstrdup(q
);
705 static void add_strategies(const char *string
, unsigned attr
)
707 struct strategy
*list
= NULL
;
708 int list_alloc
= 0, list_nr
= 0, i
;
710 memset(&list
, 0, sizeof(list
));
711 split_merge_strategies(string
, &list
, &list_nr
, &list_alloc
);
713 for (i
= 0; i
< list_nr
; i
++)
714 append_strategy(get_strategy(list
[i
].name
));
717 for (i
= 0; i
< ARRAY_SIZE(all_strategy
); i
++)
718 if (all_strategy
[i
].attr
& attr
)
719 append_strategy(&all_strategy
[i
]);
723 static int merge_trivial(void)
725 unsigned char result_tree
[20], result_commit
[20];
726 struct commit_list
*parent
= xmalloc(sizeof(*parent
));
728 write_tree_trivial(result_tree
);
729 printf("Wonderful.\n");
730 parent
->item
= lookup_commit(head
);
731 parent
->next
= xmalloc(sizeof(*parent
->next
));
732 parent
->next
->item
= remoteheads
->item
;
733 parent
->next
->next
= NULL
;
734 commit_tree(merge_msg
.buf
, result_tree
, parent
, result_commit
, NULL
);
735 finish(result_commit
, "In-index merge");
740 static int finish_automerge(struct commit_list
*common
,
741 unsigned char *result_tree
,
742 const char *wt_strategy
)
744 struct commit_list
*parents
= NULL
, *j
;
745 struct strbuf buf
= STRBUF_INIT
;
746 unsigned char result_commit
[20];
748 free_commit_list(common
);
749 if (allow_fast_forward
) {
750 parents
= remoteheads
;
751 commit_list_insert(lookup_commit(head
), &parents
);
752 parents
= reduce_heads(parents
);
754 struct commit_list
**pptr
= &parents
;
756 pptr
= &commit_list_insert(lookup_commit(head
),
758 for (j
= remoteheads
; j
; j
= j
->next
)
759 pptr
= &commit_list_insert(j
->item
, pptr
)->next
;
761 free_commit_list(remoteheads
);
762 strbuf_addch(&merge_msg
, '\n');
763 commit_tree(merge_msg
.buf
, result_tree
, parents
, result_commit
, NULL
);
764 strbuf_addf(&buf
, "Merge made by %s.", wt_strategy
);
765 finish(result_commit
, buf
.buf
);
766 strbuf_release(&buf
);
771 static int suggest_conflicts(void)
776 fp
= fopen(git_path("MERGE_MSG"), "a");
778 die_errno("Could not open '%s' for writing",
779 git_path("MERGE_MSG"));
780 fprintf(fp
, "\nConflicts:\n");
781 for (pos
= 0; pos
< active_nr
; pos
++) {
782 struct cache_entry
*ce
= active_cache
[pos
];
785 fprintf(fp
, "\t%s\n", ce
->name
);
786 while (pos
+ 1 < active_nr
&&
788 active_cache
[pos
+ 1]->name
))
794 printf("Automatic merge failed; "
795 "fix conflicts and then commit the result.\n");
799 static const char deprecation_warning
[] =
800 "'git merge <msg> HEAD <commit>' is deprecated. Please update\n"
801 "your script to use 'git merge -m <msg> <commit>' instead.\n"
802 "In future versions of git, this syntax will be removed.";
804 static struct commit
*is_old_style_invocation(int argc
, const char **argv
)
806 struct commit
*second_token
= NULL
;
808 unsigned char second_sha1
[20];
810 if (get_sha1(argv
[1], second_sha1
))
812 second_token
= lookup_commit_reference_gently(second_sha1
, 0);
814 die("'%s' is not a commit", argv
[1]);
815 if (hashcmp(second_token
->object
.sha1
, head
))
817 warning(deprecation_warning
);
822 static int evaluate_result(void)
827 /* Check how many files differ. */
828 init_revisions(&rev
, "");
829 setup_revisions(0, NULL
, &rev
, NULL
);
830 rev
.diffopt
.output_format
|=
831 DIFF_FORMAT_CALLBACK
;
832 rev
.diffopt
.format_callback
= count_diff_files
;
833 rev
.diffopt
.format_callback_data
= &cnt
;
834 run_diff_files(&rev
, 0);
837 * Check how many unmerged entries are
840 cnt
+= count_unmerged_entries();
845 int cmd_merge(int argc
, const char **argv
, const char *prefix
)
847 unsigned char result_tree
[20];
848 struct strbuf buf
= STRBUF_INIT
;
849 const char *head_arg
;
850 int flag
, head_invalid
= 0, i
;
851 int best_cnt
= -1, merge_was_ok
= 0, automerge_was_ok
= 0;
852 struct commit_list
*common
= NULL
;
853 const char *best_strategy
= NULL
, *wt_strategy
= NULL
;
854 struct commit_list
**remotes
= &remoteheads
;
856 if (file_exists(git_path("MERGE_HEAD")))
857 die("You have not concluded your merge. (MERGE_HEAD exists)");
858 if (read_cache_unmerged())
859 die("You are in the middle of a conflicted merge."
860 " (index unmerged)");
863 * Check if we are _not_ on a detached HEAD, i.e. if there is a
866 branch
= resolve_ref("HEAD", head
, 0, &flag
);
867 if (branch
&& !prefixcmp(branch
, "refs/heads/"))
869 if (is_null_sha1(head
))
872 git_config(git_merge_config
, NULL
);
875 if (diff_use_color_default
== -1)
876 diff_use_color_default
= git_use_color_default
;
878 argc
= parse_options(argc
, argv
, prefix
, builtin_merge_options
,
879 builtin_merge_usage
, 0);
884 if (!allow_fast_forward
)
885 die("You cannot combine --squash with --no-ff.");
889 if (!allow_fast_forward
&& fast_forward_only
)
890 die("You cannot combine --no-ff with --ff-only.");
893 usage_with_options(builtin_merge_usage
,
894 builtin_merge_options
);
897 * This could be traditional "merge <msg> HEAD <commit>..." and
898 * the way we can tell it is to see if the second token is HEAD,
899 * but some people might have misused the interface and used a
900 * committish that is the same as HEAD there instead.
901 * Traditional format never would have "-m" so it is an
902 * additional safety measure to check for it.
905 if (!have_message
&& is_old_style_invocation(argc
, argv
)) {
906 strbuf_addstr(&merge_msg
, argv
[0]);
910 } else if (head_invalid
) {
911 struct object
*remote_head
;
913 * If the merged head is a valid one there is no reason
914 * to forbid "git merge" into a branch yet to be born.
915 * We do the same for "git pull".
918 die("Can merge only exactly one commit into "
921 die("Squash commit into empty head not supported yet");
922 if (!allow_fast_forward
)
923 die("Non-fast-forward commit does not make sense into "
925 remote_head
= peel_to_type(argv
[0], 0, NULL
, OBJ_COMMIT
);
927 die("%s - not something we can merge", argv
[0]);
928 update_ref("initial pull", "HEAD", remote_head
->sha1
, NULL
, 0,
930 reset_hard(remote_head
->sha1
, 0);
933 struct strbuf msg
= STRBUF_INIT
;
935 /* We are invoked directly as the first-class UI. */
939 * All the rest are the commits being merged;
940 * prepare the standard merge summary message to
941 * be appended to the given message. If remote
942 * is invalid we will die later in the common
943 * codepath so we discard the error in this
946 for (i
= 0; i
< argc
; i
++)
947 merge_name(argv
[i
], &msg
);
948 fmt_merge_msg(option_log
, &msg
, &merge_msg
);
950 strbuf_setlen(&merge_msg
, merge_msg
.len
-1);
953 if (head_invalid
|| !argc
)
954 usage_with_options(builtin_merge_usage
,
955 builtin_merge_options
);
957 strbuf_addstr(&buf
, "merge");
958 for (i
= 0; i
< argc
; i
++)
959 strbuf_addf(&buf
, " %s", argv
[i
]);
960 setenv("GIT_REFLOG_ACTION", buf
.buf
, 0);
963 for (i
= 0; i
< argc
; i
++) {
965 struct commit
*commit
;
967 o
= peel_to_type(argv
[i
], 0, NULL
, OBJ_COMMIT
);
969 die("%s - not something we can merge", argv
[i
]);
970 commit
= lookup_commit(o
->sha1
);
971 commit
->util
= (void *)argv
[i
];
972 remotes
= &commit_list_insert(commit
, remotes
)->next
;
974 strbuf_addf(&buf
, "GITHEAD_%s", sha1_to_hex(o
->sha1
));
975 setenv(buf
.buf
, argv
[i
], 1);
979 if (!use_strategies
) {
980 if (!remoteheads
->next
)
981 add_strategies(pull_twohead
, DEFAULT_TWOHEAD
);
983 add_strategies(pull_octopus
, DEFAULT_OCTOPUS
);
986 for (i
= 0; i
< use_strategies_nr
; i
++) {
987 if (use_strategies
[i
]->attr
& NO_FAST_FORWARD
)
988 allow_fast_forward
= 0;
989 if (use_strategies
[i
]->attr
& NO_TRIVIAL
)
993 if (!remoteheads
->next
)
994 common
= get_merge_bases(lookup_commit(head
),
995 remoteheads
->item
, 1);
997 struct commit_list
*list
= remoteheads
;
998 commit_list_insert(lookup_commit(head
), &list
);
999 common
= get_octopus_merge_bases(list
);
1003 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head
, NULL
, 0,
1007 ; /* No common ancestors found. We need a real merge. */
1008 else if (!remoteheads
->next
&& !common
->next
&&
1009 common
->item
== remoteheads
->item
) {
1011 * If head can reach all the merge then we are up to date.
1012 * but first the most common case of merging one remote.
1014 finish_up_to_date("Already up-to-date.");
1016 } else if (allow_fast_forward
&& !remoteheads
->next
&&
1018 !hashcmp(common
->item
->object
.sha1
, head
)) {
1019 /* Again the most common case of merging one remote. */
1020 struct strbuf msg
= STRBUF_INIT
;
1024 strcpy(hex
, find_unique_abbrev(head
, DEFAULT_ABBREV
));
1027 printf("Updating %s..%s\n",
1029 find_unique_abbrev(remoteheads
->item
->object
.sha1
,
1031 strbuf_addstr(&msg
, "Fast-forward");
1034 " (no commit created; -m option ignored)");
1035 o
= peel_to_type(sha1_to_hex(remoteheads
->item
->object
.sha1
),
1036 0, NULL
, OBJ_COMMIT
);
1040 if (checkout_fast_forward(head
, remoteheads
->item
->object
.sha1
))
1043 finish(o
->sha1
, msg
.buf
);
1046 } else if (!remoteheads
->next
&& common
->next
)
1049 * We are not doing octopus and not fast-forward. Need
1052 else if (!remoteheads
->next
&& !common
->next
&& option_commit
) {
1054 * We are not doing octopus, not fast-forward, and have
1057 refresh_cache(REFRESH_QUIET
);
1058 if (allow_trivial
&& !fast_forward_only
) {
1059 /* See if it is really trivial. */
1060 git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1061 printf("Trying really trivial in-index merge...\n");
1062 if (!read_tree_trivial(common
->item
->object
.sha1
,
1063 head
, remoteheads
->item
->object
.sha1
))
1064 return merge_trivial();
1069 * An octopus. If we can reach all the remote we are up
1073 struct commit_list
*j
;
1075 for (j
= remoteheads
; j
; j
= j
->next
) {
1076 struct commit_list
*common_one
;
1079 * Here we *have* to calculate the individual
1080 * merge_bases again, otherwise "git merge HEAD^
1081 * HEAD^^" would be missed.
1083 common_one
= get_merge_bases(lookup_commit(head
),
1085 if (hashcmp(common_one
->item
->object
.sha1
,
1086 j
->item
->object
.sha1
)) {
1092 finish_up_to_date("Already up-to-date. Yeeah!");
1097 if (fast_forward_only
)
1098 die("Not possible to fast-forward, aborting.");
1100 /* We are going to make a new commit. */
1101 git_committer_info(IDENT_ERROR_ON_NO_NAME
);
1104 * At this point, we need a real merge. No matter what strategy
1105 * we use, it would operate on the index, possibly affecting the
1106 * working tree, and when resolved cleanly, have the desired
1107 * tree in the index -- this means that the index must be in
1108 * sync with the head commit. The strategies are responsible
1111 if (use_strategies_nr
!= 1) {
1113 * Stash away the local changes so that we can try more
1118 memcpy(stash
, null_sha1
, 20);
1121 for (i
= 0; i
< use_strategies_nr
; i
++) {
1124 printf("Rewinding the tree to pristine...\n");
1127 if (use_strategies_nr
!= 1)
1128 printf("Trying merge strategy %s...\n",
1129 use_strategies
[i
]->name
);
1131 * Remember which strategy left the state in the working
1134 wt_strategy
= use_strategies
[i
]->name
;
1136 ret
= try_merge_strategy(use_strategies
[i
]->name
,
1138 if (!option_commit
&& !ret
) {
1141 * This is necessary here just to avoid writing
1142 * the tree, but later we will *not* exit with
1143 * status code 1 because merge_was_ok is set.
1150 * The backend exits with 1 when conflicts are
1151 * left to be resolved, with 2 when it does not
1152 * handle the given merge at all.
1155 int cnt
= evaluate_result();
1157 if (best_cnt
<= 0 || cnt
<= best_cnt
) {
1158 best_strategy
= use_strategies
[i
]->name
;
1168 /* Automerge succeeded. */
1169 write_tree_trivial(result_tree
);
1170 automerge_was_ok
= 1;
1175 * If we have a resulting tree, that means the strategy module
1176 * auto resolved the merge cleanly.
1178 if (automerge_was_ok
)
1179 return finish_automerge(common
, result_tree
, wt_strategy
);
1182 * Pick the result from the best strategy and have the user fix
1185 if (!best_strategy
) {
1187 if (use_strategies_nr
> 1)
1189 "No merge strategy handled the merge.\n");
1191 fprintf(stderr
, "Merge with strategy %s failed.\n",
1192 use_strategies
[0]->name
);
1194 } else if (best_strategy
== wt_strategy
)
1195 ; /* We already have its result in the working tree. */
1197 printf("Rewinding the tree to pristine...\n");
1199 printf("Using the %s to prepare resolving by hand.\n",
1201 try_merge_strategy(best_strategy
, common
, head_arg
);
1208 struct commit_list
*j
;
1210 for (j
= remoteheads
; j
; j
= j
->next
)
1211 strbuf_addf(&buf
, "%s\n",
1212 sha1_to_hex(j
->item
->object
.sha1
));
1213 fd
= open(git_path("MERGE_HEAD"), O_WRONLY
| O_CREAT
, 0666);
1215 die_errno("Could not open '%s' for writing",
1216 git_path("MERGE_HEAD"));
1217 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
)
1218 die_errno("Could not write to '%s'", git_path("MERGE_HEAD"));
1220 strbuf_addch(&merge_msg
, '\n');
1221 fd
= open(git_path("MERGE_MSG"), O_WRONLY
| O_CREAT
, 0666);
1223 die_errno("Could not open '%s' for writing",
1224 git_path("MERGE_MSG"));
1225 if (write_in_full(fd
, merge_msg
.buf
, merge_msg
.len
) !=
1227 die_errno("Could not write to '%s'", git_path("MERGE_MSG"));
1229 fd
= open(git_path("MERGE_MODE"), O_WRONLY
| O_CREAT
| O_TRUNC
, 0666);
1231 die_errno("Could not open '%s' for writing",
1232 git_path("MERGE_MODE"));
1234 if (!allow_fast_forward
)
1235 strbuf_addf(&buf
, "no-ff");
1236 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
)
1237 die_errno("Could not write to '%s'", git_path("MERGE_MODE"));
1242 fprintf(stderr
, "Automatic merge went well; "
1243 "stopped before committing as requested\n");
1246 return suggest_conflicts();