2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
7 #include "cache-tree.h"
11 #include "tree-walk.h"
15 #include "unpack-trees.h"
16 #include "string-list.h"
17 #include "xdiff-interface.h"
20 #include "merge-recursive.h"
23 static struct tree
*shift_tree_object(struct tree
*one
, struct tree
*two
)
25 unsigned char shifted
[20];
28 * NEEDSWORK: this limits the recursion depth to hardcoded
29 * value '2' to avoid excessive overhead.
31 shift_tree(one
->object
.sha1
, two
->object
.sha1
, shifted
, 2);
32 if (!hashcmp(two
->object
.sha1
, shifted
))
34 return lookup_tree(shifted
);
38 * A virtual commit has (const char *)commit->util set to the name.
41 static struct commit
*make_virtual_commit(struct tree
*tree
, const char *comment
)
43 struct commit
*commit
= xcalloc(1, sizeof(struct commit
));
45 commit
->util
= (void*)comment
;
47 commit
->object
.parsed
= 1;
52 * Since we use get_tree_entry(), which does not put the read object into
53 * the object pool, we cannot rely on a == b.
55 static int sha_eq(const unsigned char *a
, const unsigned char *b
)
59 return a
&& b
&& hashcmp(a
, b
) == 0;
63 * Since we want to write the index eventually, we cannot reuse the index
64 * for these (temporary) data.
71 unsigned char sha
[20];
76 static int show(struct merge_options
*o
, int v
)
78 return (!o
->call_depth
&& o
->verbosity
>= v
) || o
->verbosity
>= 5;
81 static void flush_output(struct merge_options
*o
)
84 fputs(o
->obuf
.buf
, stdout
);
85 strbuf_reset(&o
->obuf
);
89 __attribute__((format (printf
, 3, 4)))
90 static void output(struct merge_options
*o
, int v
, const char *fmt
, ...)
98 strbuf_grow(&o
->obuf
, o
->call_depth
* 2 + 2);
99 memset(o
->obuf
.buf
+ o
->obuf
.len
, ' ', o
->call_depth
* 2);
100 strbuf_setlen(&o
->obuf
, o
->obuf
.len
+ o
->call_depth
* 2);
103 len
= vsnprintf(o
->obuf
.buf
+ o
->obuf
.len
, strbuf_avail(&o
->obuf
), fmt
, ap
);
108 if (len
>= strbuf_avail(&o
->obuf
)) {
109 strbuf_grow(&o
->obuf
, len
+ 2);
111 len
= vsnprintf(o
->obuf
.buf
+ o
->obuf
.len
, strbuf_avail(&o
->obuf
), fmt
, ap
);
113 if (len
>= strbuf_avail(&o
->obuf
)) {
114 die("this should not happen, your snprintf is broken");
117 strbuf_setlen(&o
->obuf
, o
->obuf
.len
+ len
);
118 strbuf_add(&o
->obuf
, "\n", 1);
119 if (!o
->buffer_output
)
123 static void output_commit_title(struct merge_options
*o
, struct commit
*commit
)
127 for (i
= o
->call_depth
; i
--;)
130 printf("virtual %s\n", (char *)commit
->util
);
132 printf("%s ", find_unique_abbrev(commit
->object
.sha1
, DEFAULT_ABBREV
));
133 if (parse_commit(commit
) != 0)
134 printf("(bad commit)\n");
138 for (s
= commit
->buffer
; *s
; s
++)
139 if (*s
== '\n' && s
[1] == '\n') {
143 for (len
= 0; s
[len
] && '\n' != s
[len
]; len
++)
145 printf("%.*s\n", len
, s
);
150 static int add_cacheinfo(unsigned int mode
, const unsigned char *sha1
,
151 const char *path
, int stage
, int refresh
, int options
)
153 struct cache_entry
*ce
;
154 ce
= make_cache_entry(mode
, sha1
? sha1
: null_sha1
, path
, stage
, refresh
);
156 return error("addinfo_cache failed for path '%s'", path
);
157 return add_cache_entry(ce
, options
);
160 static void init_tree_desc_from_tree(struct tree_desc
*desc
, struct tree
*tree
)
163 init_tree_desc(desc
, tree
->buffer
, tree
->size
);
166 static int git_merge_trees(int index_only
,
172 struct tree_desc t
[3];
173 struct unpack_trees_options opts
;
174 static const struct unpack_trees_error_msgs msgs
= {
175 /* would_overwrite */
176 "Your local changes to '%s' would be overwritten by merge. Aborting.",
177 /* not_uptodate_file */
178 "Your local changes to '%s' would be overwritten by merge. Aborting.",
179 /* not_uptodate_dir */
180 "Updating '%s' would lose untracked files in it. Aborting.",
181 /* would_lose_untracked */
182 "Untracked working tree file '%s' would be %s by merge. Aborting",
183 /* bind_overlap -- will not happen here */
187 memset(&opts
, 0, sizeof(opts
));
194 opts
.fn
= threeway_merge
;
195 opts
.src_index
= &the_index
;
196 opts
.dst_index
= &the_index
;
199 init_tree_desc_from_tree(t
+0, common
);
200 init_tree_desc_from_tree(t
+1, head
);
201 init_tree_desc_from_tree(t
+2, merge
);
203 rc
= unpack_trees(3, t
, &opts
);
204 cache_tree_free(&active_cache_tree
);
208 struct tree
*write_tree_from_memory(struct merge_options
*o
)
210 struct tree
*result
= NULL
;
212 if (unmerged_cache()) {
214 output(o
, 0, "There are unmerged index entries:");
215 for (i
= 0; i
< active_nr
; i
++) {
216 struct cache_entry
*ce
= active_cache
[i
];
218 output(o
, 0, "%d %.*s", ce_stage(ce
),
219 (int)ce_namelen(ce
), ce
->name
);
224 if (!active_cache_tree
)
225 active_cache_tree
= cache_tree();
227 if (!cache_tree_fully_valid(active_cache_tree
) &&
228 cache_tree_update(active_cache_tree
,
229 active_cache
, active_nr
, 0, 0) < 0)
230 die("error building trees");
232 result
= lookup_tree(active_cache_tree
->sha1
);
237 static int save_files_dirs(const unsigned char *sha1
,
238 const char *base
, int baselen
, const char *path
,
239 unsigned int mode
, int stage
, void *context
)
241 int len
= strlen(path
);
242 char *newpath
= xmalloc(baselen
+ len
+ 1);
243 struct merge_options
*o
= context
;
245 memcpy(newpath
, base
, baselen
);
246 memcpy(newpath
+ baselen
, path
, len
);
247 newpath
[baselen
+ len
] = '\0';
250 string_list_insert(newpath
, &o
->current_directory_set
);
252 string_list_insert(newpath
, &o
->current_file_set
);
255 return (S_ISDIR(mode
) ? READ_TREE_RECURSIVE
: 0);
258 static int get_files_dirs(struct merge_options
*o
, struct tree
*tree
)
261 if (read_tree_recursive(tree
, "", 0, 0, NULL
, save_files_dirs
, o
))
263 n
= o
->current_file_set
.nr
+ o
->current_directory_set
.nr
;
268 * Returns an index_entry instance which doesn't have to correspond to
269 * a real cache entry in Git's index.
271 static struct stage_data
*insert_stage_data(const char *path
,
272 struct tree
*o
, struct tree
*a
, struct tree
*b
,
273 struct string_list
*entries
)
275 struct string_list_item
*item
;
276 struct stage_data
*e
= xcalloc(1, sizeof(struct stage_data
));
277 get_tree_entry(o
->object
.sha1
, path
,
278 e
->stages
[1].sha
, &e
->stages
[1].mode
);
279 get_tree_entry(a
->object
.sha1
, path
,
280 e
->stages
[2].sha
, &e
->stages
[2].mode
);
281 get_tree_entry(b
->object
.sha1
, path
,
282 e
->stages
[3].sha
, &e
->stages
[3].mode
);
283 item
= string_list_insert(path
, entries
);
289 * Create a dictionary mapping file names to stage_data objects. The
290 * dictionary contains one entry for every path with a non-zero stage entry.
292 static struct string_list
*get_unmerged(void)
294 struct string_list
*unmerged
= xcalloc(1, sizeof(struct string_list
));
297 unmerged
->strdup_strings
= 1;
299 for (i
= 0; i
< active_nr
; i
++) {
300 struct string_list_item
*item
;
301 struct stage_data
*e
;
302 struct cache_entry
*ce
= active_cache
[i
];
306 item
= string_list_lookup(ce
->name
, unmerged
);
308 item
= string_list_insert(ce
->name
, unmerged
);
309 item
->util
= xcalloc(1, sizeof(struct stage_data
));
312 e
->stages
[ce_stage(ce
)].mode
= ce
->ce_mode
;
313 hashcpy(e
->stages
[ce_stage(ce
)].sha
, ce
->sha1
);
321 struct diff_filepair
*pair
;
322 struct stage_data
*src_entry
;
323 struct stage_data
*dst_entry
;
324 unsigned processed
:1;
328 * Get information of all renames which occurred between 'o_tree' and
329 * 'tree'. We need the three trees in the merge ('o_tree', 'a_tree' and
330 * 'b_tree') to be able to associate the correct cache entries with
331 * the rename information. 'tree' is always equal to either a_tree or b_tree.
333 static struct string_list
*get_renames(struct merge_options
*o
,
338 struct string_list
*entries
)
341 struct string_list
*renames
;
342 struct diff_options opts
;
344 renames
= xcalloc(1, sizeof(struct string_list
));
346 DIFF_OPT_SET(&opts
, RECURSIVE
);
347 opts
.detect_rename
= DIFF_DETECT_RENAME
;
348 opts
.rename_limit
= o
->merge_rename_limit
>= 0 ? o
->merge_rename_limit
:
349 o
->diff_rename_limit
>= 0 ? o
->diff_rename_limit
:
351 opts
.warn_on_too_large_rename
= 1;
352 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
353 if (diff_setup_done(&opts
) < 0)
354 die("diff setup failed");
355 diff_tree_sha1(o_tree
->object
.sha1
, tree
->object
.sha1
, "", &opts
);
357 for (i
= 0; i
< diff_queued_diff
.nr
; ++i
) {
358 struct string_list_item
*item
;
360 struct diff_filepair
*pair
= diff_queued_diff
.queue
[i
];
361 if (pair
->status
!= 'R') {
362 diff_free_filepair(pair
);
365 re
= xmalloc(sizeof(*re
));
368 item
= string_list_lookup(re
->pair
->one
->path
, entries
);
370 re
->src_entry
= insert_stage_data(re
->pair
->one
->path
,
371 o_tree
, a_tree
, b_tree
, entries
);
373 re
->src_entry
= item
->util
;
375 item
= string_list_lookup(re
->pair
->two
->path
, entries
);
377 re
->dst_entry
= insert_stage_data(re
->pair
->two
->path
,
378 o_tree
, a_tree
, b_tree
, entries
);
380 re
->dst_entry
= item
->util
;
381 item
= string_list_insert(pair
->one
->path
, renames
);
384 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
385 diff_queued_diff
.nr
= 0;
390 static int update_stages(const char *path
, struct diff_filespec
*o
,
391 struct diff_filespec
*a
, struct diff_filespec
*b
,
394 int options
= ADD_CACHE_OK_TO_ADD
| ADD_CACHE_OK_TO_REPLACE
;
396 if (remove_file_from_cache(path
))
399 if (add_cacheinfo(o
->mode
, o
->sha1
, path
, 1, 0, options
))
402 if (add_cacheinfo(a
->mode
, a
->sha1
, path
, 2, 0, options
))
405 if (add_cacheinfo(b
->mode
, b
->sha1
, path
, 3, 0, options
))
410 static int remove_file(struct merge_options
*o
, int clean
,
411 const char *path
, int no_wd
)
413 int update_cache
= o
->call_depth
|| clean
;
414 int update_working_directory
= !o
->call_depth
&& !no_wd
;
417 if (remove_file_from_cache(path
))
420 if (update_working_directory
) {
421 if (remove_path(path
) && errno
!= ENOENT
)
427 static char *unique_path(struct merge_options
*o
, const char *path
, const char *branch
)
429 char *newpath
= xmalloc(strlen(path
) + 1 + strlen(branch
) + 8 + 1);
432 char *p
= newpath
+ strlen(path
);
433 strcpy(newpath
, path
);
439 while (string_list_has_string(&o
->current_file_set
, newpath
) ||
440 string_list_has_string(&o
->current_directory_set
, newpath
) ||
441 lstat(newpath
, &st
) == 0)
442 sprintf(p
, "_%d", suffix
++);
444 string_list_insert(newpath
, &o
->current_file_set
);
448 static void flush_buffer(int fd
, const char *buf
, unsigned long size
)
451 long ret
= write_in_full(fd
, buf
, size
);
456 die_errno("merge-recursive");
458 die("merge-recursive: disk full?");
465 static int would_lose_untracked(const char *path
)
467 int pos
= cache_name_pos(path
, strlen(path
));
471 while (pos
< active_nr
&&
472 !strcmp(path
, active_cache
[pos
]->name
)) {
474 * If stage #0, it is definitely tracked.
475 * If it has stage #2 then it was tracked
476 * before this merge started. All other
477 * cases the path was not tracked.
479 switch (ce_stage(active_cache
[pos
])) {
486 return file_exists(path
);
489 static int make_room_for_path(const char *path
)
492 const char *msg
= "failed to create path '%s'%s";
494 status
= safe_create_leading_directories_const(path
);
497 /* something else exists */
498 error(msg
, path
, ": perhaps a D/F conflict?");
505 * Do not unlink a file in the work tree if we are not
508 if (would_lose_untracked(path
))
509 return error("refusing to lose untracked file at '%s'",
512 /* Successful unlink is good.. */
515 /* .. and so is no existing file */
518 /* .. but not some other error (who really cares what?) */
519 return error(msg
, path
, ": perhaps a D/F conflict?");
522 static void update_file_flags(struct merge_options
*o
,
523 const unsigned char *sha
,
533 enum object_type type
;
537 if (S_ISGITLINK(mode
))
539 * We may later decide to recursively descend into
540 * the submodule directory and update its index
541 * and/or work tree, but we do not do that now.
545 buf
= read_sha1_file(sha
, &type
, &size
);
547 die("cannot read object %s '%s'", sha1_to_hex(sha
), path
);
548 if (type
!= OBJ_BLOB
)
549 die("blob expected for %s '%s'", sha1_to_hex(sha
), path
);
551 struct strbuf strbuf
= STRBUF_INIT
;
552 if (convert_to_working_tree(path
, buf
, size
, &strbuf
)) {
555 buf
= strbuf_detach(&strbuf
, NULL
);
559 if (make_room_for_path(path
) < 0) {
564 if (S_ISREG(mode
) || (!has_symlinks
&& S_ISLNK(mode
))) {
570 fd
= open(path
, O_WRONLY
| O_TRUNC
| O_CREAT
, mode
);
572 die_errno("failed to open '%s'", path
);
573 flush_buffer(fd
, buf
, size
);
575 } else if (S_ISLNK(mode
)) {
576 char *lnk
= xmemdupz(buf
, size
);
577 safe_create_leading_directories_const(path
);
579 if (symlink(lnk
, path
))
580 die_errno("failed to symlink '%s'", path
);
583 die("do not know what to do with %06o %s '%s'",
584 mode
, sha1_to_hex(sha
), path
);
589 add_cacheinfo(mode
, sha
, path
, 0, update_wd
, ADD_CACHE_OK_TO_ADD
);
592 static void update_file(struct merge_options
*o
,
594 const unsigned char *sha
,
598 update_file_flags(o
, sha
, mode
, path
, o
->call_depth
|| clean
, !o
->call_depth
);
601 /* Low level file merging, update and removal */
603 struct merge_file_info
605 unsigned char sha
[20];
611 static void fill_mm(const unsigned char *sha1
, mmfile_t
*mm
)
614 enum object_type type
;
616 if (!hashcmp(sha1
, null_sha1
)) {
617 mm
->ptr
= xstrdup("");
622 mm
->ptr
= read_sha1_file(sha1
, &type
, &size
);
623 if (!mm
->ptr
|| type
!= OBJ_BLOB
)
624 die("unable to read blob object %s", sha1_to_hex(sha1
));
628 static int merge_3way(struct merge_options
*o
,
629 mmbuffer_t
*result_buf
,
630 struct diff_filespec
*one
,
631 struct diff_filespec
*a
,
632 struct diff_filespec
*b
,
636 mmfile_t orig
, src1
, src2
;
640 if (strcmp(a
->path
, b
->path
)) {
641 name1
= xstrdup(mkpath("%s:%s", branch1
, a
->path
));
642 name2
= xstrdup(mkpath("%s:%s", branch2
, b
->path
));
644 name1
= xstrdup(mkpath("%s", branch1
));
645 name2
= xstrdup(mkpath("%s", branch2
));
648 fill_mm(one
->sha1
, &orig
);
649 fill_mm(a
->sha1
, &src1
);
650 fill_mm(b
->sha1
, &src2
);
652 merge_status
= ll_merge(result_buf
, a
->path
, &orig
,
653 &src1
, name1
, &src2
, name2
,
664 static struct merge_file_info
merge_file(struct merge_options
*o
,
665 struct diff_filespec
*one
,
666 struct diff_filespec
*a
,
667 struct diff_filespec
*b
,
671 struct merge_file_info result
;
675 if ((S_IFMT
& a
->mode
) != (S_IFMT
& b
->mode
)) {
677 if (S_ISREG(a
->mode
)) {
678 result
.mode
= a
->mode
;
679 hashcpy(result
.sha
, a
->sha1
);
681 result
.mode
= b
->mode
;
682 hashcpy(result
.sha
, b
->sha1
);
685 if (!sha_eq(a
->sha1
, one
->sha1
) && !sha_eq(b
->sha1
, one
->sha1
))
691 if (a
->mode
== b
->mode
|| a
->mode
== one
->mode
)
692 result
.mode
= b
->mode
;
694 result
.mode
= a
->mode
;
695 if (b
->mode
!= one
->mode
) {
701 if (sha_eq(a
->sha1
, b
->sha1
) || sha_eq(a
->sha1
, one
->sha1
))
702 hashcpy(result
.sha
, b
->sha1
);
703 else if (sha_eq(b
->sha1
, one
->sha1
))
704 hashcpy(result
.sha
, a
->sha1
);
705 else if (S_ISREG(a
->mode
)) {
706 mmbuffer_t result_buf
;
709 merge_status
= merge_3way(o
, &result_buf
, one
, a
, b
,
712 if ((merge_status
< 0) || !result_buf
.ptr
)
713 die("Failed to execute internal merge");
715 if (write_sha1_file(result_buf
.ptr
, result_buf
.size
,
716 blob_type
, result
.sha
))
717 die("Unable to add %s to database",
720 free(result_buf
.ptr
);
721 result
.clean
= (merge_status
== 0);
722 } else if (S_ISGITLINK(a
->mode
)) {
724 hashcpy(result
.sha
, a
->sha1
);
725 } else if (S_ISLNK(a
->mode
)) {
726 hashcpy(result
.sha
, a
->sha1
);
728 if (!sha_eq(a
->sha1
, b
->sha1
))
731 die("unsupported object type in the tree");
738 static void conflict_rename_rename(struct merge_options
*o
,
746 const char *ren1_dst
= ren1
->pair
->two
->path
;
747 const char *ren2_dst
= ren2
->pair
->two
->path
;
748 const char *dst_name1
= ren1_dst
;
749 const char *dst_name2
= ren2_dst
;
750 if (string_list_has_string(&o
->current_directory_set
, ren1_dst
)) {
751 dst_name1
= del
[delp
++] = unique_path(o
, ren1_dst
, branch1
);
752 output(o
, 1, "%s is a directory in %s adding as %s instead",
753 ren1_dst
, branch2
, dst_name1
);
754 remove_file(o
, 0, ren1_dst
, 0);
756 if (string_list_has_string(&o
->current_directory_set
, ren2_dst
)) {
757 dst_name2
= del
[delp
++] = unique_path(o
, ren2_dst
, branch2
);
758 output(o
, 1, "%s is a directory in %s adding as %s instead",
759 ren2_dst
, branch1
, dst_name2
);
760 remove_file(o
, 0, ren2_dst
, 0);
763 remove_file_from_cache(dst_name1
);
764 remove_file_from_cache(dst_name2
);
766 * Uncomment to leave the conflicting names in the resulting tree
768 * update_file(o, 0, ren1->pair->two->sha1, ren1->pair->two->mode, dst_name1);
769 * update_file(o, 0, ren2->pair->two->sha1, ren2->pair->two->mode, dst_name2);
772 update_stages(dst_name1
, NULL
, ren1
->pair
->two
, NULL
, 1);
773 update_stages(dst_name2
, NULL
, NULL
, ren2
->pair
->two
, 1);
779 static void conflict_rename_dir(struct merge_options
*o
,
783 char *new_path
= unique_path(o
, ren1
->pair
->two
->path
, branch1
);
784 output(o
, 1, "Renaming %s to %s instead", ren1
->pair
->one
->path
, new_path
);
785 remove_file(o
, 0, ren1
->pair
->two
->path
, 0);
786 update_file(o
, 0, ren1
->pair
->two
->sha1
, ren1
->pair
->two
->mode
, new_path
);
790 static void conflict_rename_rename_2(struct merge_options
*o
,
796 char *new_path1
= unique_path(o
, ren1
->pair
->two
->path
, branch1
);
797 char *new_path2
= unique_path(o
, ren2
->pair
->two
->path
, branch2
);
798 output(o
, 1, "Renaming %s to %s and %s to %s instead",
799 ren1
->pair
->one
->path
, new_path1
,
800 ren2
->pair
->one
->path
, new_path2
);
801 remove_file(o
, 0, ren1
->pair
->two
->path
, 0);
802 update_file(o
, 0, ren1
->pair
->two
->sha1
, ren1
->pair
->two
->mode
, new_path1
);
803 update_file(o
, 0, ren2
->pair
->two
->sha1
, ren2
->pair
->two
->mode
, new_path2
);
808 static int process_renames(struct merge_options
*o
,
809 struct string_list
*a_renames
,
810 struct string_list
*b_renames
)
812 int clean_merge
= 1, i
, j
;
813 struct string_list a_by_dst
= {NULL
, 0, 0, 0}, b_by_dst
= {NULL
, 0, 0, 0};
814 const struct rename
*sre
;
816 for (i
= 0; i
< a_renames
->nr
; i
++) {
817 sre
= a_renames
->items
[i
].util
;
818 string_list_insert(sre
->pair
->two
->path
, &a_by_dst
)->util
821 for (i
= 0; i
< b_renames
->nr
; i
++) {
822 sre
= b_renames
->items
[i
].util
;
823 string_list_insert(sre
->pair
->two
->path
, &b_by_dst
)->util
827 for (i
= 0, j
= 0; i
< a_renames
->nr
|| j
< b_renames
->nr
;) {
829 struct string_list
*renames1
, *renames2Dst
;
830 struct rename
*ren1
= NULL
, *ren2
= NULL
;
831 const char *branch1
, *branch2
;
832 const char *ren1_src
, *ren1_dst
;
834 if (i
>= a_renames
->nr
) {
835 ren2
= b_renames
->items
[j
++].util
;
836 } else if (j
>= b_renames
->nr
) {
837 ren1
= a_renames
->items
[i
++].util
;
839 int compare
= strcmp(a_renames
->items
[i
].string
,
840 b_renames
->items
[j
].string
);
842 ren1
= a_renames
->items
[i
++].util
;
844 ren2
= b_renames
->items
[j
++].util
;
847 /* TODO: refactor, so that 1/2 are not needed */
849 renames1
= a_renames
;
850 renames2Dst
= &b_by_dst
;
851 branch1
= o
->branch1
;
852 branch2
= o
->branch2
;
855 renames1
= b_renames
;
856 renames2Dst
= &a_by_dst
;
857 branch1
= o
->branch2
;
858 branch2
= o
->branch1
;
863 src
= ren1
->pair
->one
->path
;
865 ren1
->dst_entry
->processed
= 1;
866 ren1
->src_entry
->processed
= 1;
872 ren1_src
= ren1
->pair
->one
->path
;
873 ren1_dst
= ren1
->pair
->two
->path
;
876 const char *ren2_src
= ren2
->pair
->one
->path
;
877 const char *ren2_dst
= ren2
->pair
->two
->path
;
878 /* Renamed in 1 and renamed in 2 */
879 if (strcmp(ren1_src
, ren2_src
) != 0)
880 die("ren1.src != ren2.src");
881 ren2
->dst_entry
->processed
= 1;
883 if (strcmp(ren1_dst
, ren2_dst
) != 0) {
885 output(o
, 1, "CONFLICT (rename/rename): "
886 "Rename \"%s\"->\"%s\" in branch \"%s\" "
887 "rename \"%s\"->\"%s\" in \"%s\"%s",
888 src
, ren1_dst
, branch1
,
889 src
, ren2_dst
, branch2
,
890 o
->call_depth
? " (left unresolved)": "");
892 remove_file_from_cache(src
);
893 update_file(o
, 0, ren1
->pair
->one
->sha1
,
894 ren1
->pair
->one
->mode
, src
);
896 conflict_rename_rename(o
, ren1
, branch1
, ren2
, branch2
);
898 struct merge_file_info mfi
;
899 remove_file(o
, 1, ren1_src
, 1);
906 if (mfi
.merge
|| !mfi
.clean
)
907 output(o
, 1, "Renaming %s->%s", src
, ren1_dst
);
910 output(o
, 2, "Auto-merging %s", ren1_dst
);
913 output(o
, 1, "CONFLICT (content): merge conflict in %s",
918 update_stages(ren1_dst
,
924 update_file(o
, mfi
.clean
, mfi
.sha
, mfi
.mode
, ren1_dst
);
927 /* Renamed in 1, maybe changed in 2 */
928 struct string_list_item
*item
;
929 /* we only use sha1 and mode of these */
930 struct diff_filespec src_other
, dst_other
;
931 int try_merge
, stage
= a_renames
== renames1
? 3: 2;
933 remove_file(o
, 1, ren1_src
, o
->call_depth
|| stage
== 3);
935 hashcpy(src_other
.sha1
, ren1
->src_entry
->stages
[stage
].sha
);
936 src_other
.mode
= ren1
->src_entry
->stages
[stage
].mode
;
937 hashcpy(dst_other
.sha1
, ren1
->dst_entry
->stages
[stage
].sha
);
938 dst_other
.mode
= ren1
->dst_entry
->stages
[stage
].mode
;
942 if (string_list_has_string(&o
->current_directory_set
, ren1_dst
)) {
944 output(o
, 1, "CONFLICT (rename/directory): Rename %s->%s in %s "
945 " directory %s added in %s",
946 ren1_src
, ren1_dst
, branch1
,
948 conflict_rename_dir(o
, ren1
, branch1
);
949 } else if (sha_eq(src_other
.sha1
, null_sha1
)) {
951 output(o
, 1, "CONFLICT (rename/delete): Rename %s->%s in %s "
953 ren1_src
, ren1_dst
, branch1
,
955 update_file(o
, 0, ren1
->pair
->two
->sha1
, ren1
->pair
->two
->mode
, ren1_dst
);
957 update_stages(ren1_dst
, NULL
,
958 branch1
== o
->branch1
?
959 ren1
->pair
->two
: NULL
,
960 branch1
== o
->branch1
?
961 NULL
: ren1
->pair
->two
, 1);
962 } else if (!sha_eq(dst_other
.sha1
, null_sha1
)) {
963 const char *new_path
;
966 output(o
, 1, "CONFLICT (rename/add): Rename %s->%s in %s. "
968 ren1_src
, ren1_dst
, branch1
,
971 struct merge_file_info mfi
;
972 struct diff_filespec one
, a
, b
;
974 one
.path
= a
.path
= b
.path
=
976 hashcpy(one
.sha1
, null_sha1
);
978 hashcpy(a
.sha1
, ren1
->pair
->two
->sha1
);
979 a
.mode
= ren1
->pair
->two
->mode
;
980 hashcpy(b
.sha1
, dst_other
.sha1
);
981 b
.mode
= dst_other
.mode
;
982 mfi
= merge_file(o
, &one
, &a
, &b
,
985 output(o
, 1, "Adding merged %s", ren1_dst
);
991 new_path
= unique_path(o
, ren1_dst
, branch2
);
992 output(o
, 1, "Adding as %s instead", new_path
);
993 update_file(o
, 0, dst_other
.sha1
, dst_other
.mode
, new_path
);
995 } else if ((item
= string_list_lookup(ren1_dst
, renames2Dst
))) {
999 output(o
, 1, "CONFLICT (rename/rename): "
1000 "Rename %s->%s in %s. "
1001 "Rename %s->%s in %s",
1002 ren1_src
, ren1_dst
, branch1
,
1003 ren2
->pair
->one
->path
, ren2
->pair
->two
->path
, branch2
);
1004 conflict_rename_rename_2(o
, ren1
, branch1
, ren2
, branch2
);
1009 struct diff_filespec
*one
, *a
, *b
;
1010 struct merge_file_info mfi
;
1011 src_other
.path
= (char *)ren1_src
;
1013 one
= ren1
->pair
->one
;
1014 if (a_renames
== renames1
) {
1015 a
= ren1
->pair
->two
;
1018 b
= ren1
->pair
->two
;
1021 mfi
= merge_file(o
, one
, a
, b
,
1022 o
->branch1
, o
->branch2
);
1025 sha_eq(mfi
.sha
, ren1
->pair
->two
->sha1
) &&
1026 mfi
.mode
== ren1
->pair
->two
->mode
)
1028 * This messaged is part of
1029 * t6022 test. If you change
1030 * it update the test too.
1032 output(o
, 3, "Skipped %s (merged same as existing)", ren1_dst
);
1034 if (mfi
.merge
|| !mfi
.clean
)
1035 output(o
, 1, "Renaming %s => %s", ren1_src
, ren1_dst
);
1037 output(o
, 2, "Auto-merging %s", ren1_dst
);
1039 output(o
, 1, "CONFLICT (rename/modify): Merge conflict in %s",
1044 update_stages(ren1_dst
,
1047 update_file(o
, mfi
.clean
, mfi
.sha
, mfi
.mode
, ren1_dst
);
1052 string_list_clear(&a_by_dst
, 0);
1053 string_list_clear(&b_by_dst
, 0);
1058 static unsigned char *stage_sha(const unsigned char *sha
, unsigned mode
)
1060 return (is_null_sha1(sha
) || mode
== 0) ? NULL
: (unsigned char *)sha
;
1063 /* Per entry merge function */
1064 static int process_entry(struct merge_options
*o
,
1065 const char *path
, struct stage_data
*entry
)
1068 printf("processing entry, clean cache: %s\n", index_only ? "yes": "no");
1069 print_index_entry("\tpath: ", entry);
1071 int clean_merge
= 1;
1072 unsigned o_mode
= entry
->stages
[1].mode
;
1073 unsigned a_mode
= entry
->stages
[2].mode
;
1074 unsigned b_mode
= entry
->stages
[3].mode
;
1075 unsigned char *o_sha
= stage_sha(entry
->stages
[1].sha
, o_mode
);
1076 unsigned char *a_sha
= stage_sha(entry
->stages
[2].sha
, a_mode
);
1077 unsigned char *b_sha
= stage_sha(entry
->stages
[3].sha
, b_mode
);
1079 if (o_sha
&& (!a_sha
|| !b_sha
)) {
1080 /* Case A: Deleted in one */
1081 if ((!a_sha
&& !b_sha
) ||
1082 (sha_eq(a_sha
, o_sha
) && !b_sha
) ||
1083 (!a_sha
&& sha_eq(b_sha
, o_sha
))) {
1084 /* Deleted in both or deleted in one and
1085 * unchanged in the other */
1087 output(o
, 2, "Removing %s", path
);
1088 /* do not touch working file if it did not exist */
1089 remove_file(o
, 1, path
, !a_sha
);
1091 /* Deleted in one and changed in the other */
1094 output(o
, 1, "CONFLICT (delete/modify): %s deleted in %s "
1095 "and modified in %s. Version %s of %s left in tree.",
1097 o
->branch2
, o
->branch2
, path
);
1098 update_file(o
, 0, b_sha
, b_mode
, path
);
1100 output(o
, 1, "CONFLICT (delete/modify): %s deleted in %s "
1101 "and modified in %s. Version %s of %s left in tree.",
1103 o
->branch1
, o
->branch1
, path
);
1104 update_file(o
, 0, a_sha
, a_mode
, path
);
1108 } else if ((!o_sha
&& a_sha
&& !b_sha
) ||
1109 (!o_sha
&& !a_sha
&& b_sha
)) {
1110 /* Case B: Added in one. */
1111 const char *add_branch
;
1112 const char *other_branch
;
1114 const unsigned char *sha
;
1118 add_branch
= o
->branch1
;
1119 other_branch
= o
->branch2
;
1122 conf
= "file/directory";
1124 add_branch
= o
->branch2
;
1125 other_branch
= o
->branch1
;
1128 conf
= "directory/file";
1130 if (string_list_has_string(&o
->current_directory_set
, path
)) {
1131 const char *new_path
= unique_path(o
, path
, add_branch
);
1133 output(o
, 1, "CONFLICT (%s): There is a directory with name %s in %s. "
1135 conf
, path
, other_branch
, path
, new_path
);
1136 remove_file(o
, 0, path
, 0);
1137 update_file(o
, 0, sha
, mode
, new_path
);
1139 output(o
, 2, "Adding %s", path
);
1140 update_file(o
, 1, sha
, mode
, path
);
1142 } else if (a_sha
&& b_sha
) {
1143 /* Case C: Added in both (check for same permissions) and */
1144 /* case D: Modified in both, but differently. */
1145 const char *reason
= "content";
1146 struct merge_file_info mfi
;
1147 struct diff_filespec one
, a
, b
;
1151 o_sha
= (unsigned char *)null_sha1
;
1153 output(o
, 2, "Auto-merging %s", path
);
1154 one
.path
= a
.path
= b
.path
= (char *)path
;
1155 hashcpy(one
.sha1
, o_sha
);
1157 hashcpy(a
.sha1
, a_sha
);
1159 hashcpy(b
.sha1
, b_sha
);
1162 mfi
= merge_file(o
, &one
, &a
, &b
,
1163 o
->branch1
, o
->branch2
);
1165 clean_merge
= mfi
.clean
;
1167 if (S_ISGITLINK(mfi
.mode
))
1168 reason
= "submodule";
1169 output(o
, 1, "CONFLICT (%s): Merge conflict in %s",
1172 update_file(o
, mfi
.clean
, mfi
.sha
, mfi
.mode
, path
);
1173 } else if (!o_sha
&& !a_sha
&& !b_sha
) {
1175 * this entry was deleted altogether. a_mode == 0 means
1176 * we had that path and want to actively remove it.
1178 remove_file(o
, 1, path
, !a_mode
);
1180 die("Fatal merge failure, shouldn't happen.");
1185 int merge_trees(struct merge_options
*o
,
1188 struct tree
*common
,
1189 struct tree
**result
)
1193 if (o
->subtree_merge
) {
1194 merge
= shift_tree_object(head
, merge
);
1195 common
= shift_tree_object(head
, common
);
1198 if (sha_eq(common
->object
.sha1
, merge
->object
.sha1
)) {
1199 output(o
, 0, "Already uptodate!");
1204 code
= git_merge_trees(o
->call_depth
, common
, head
, merge
);
1207 if (show(o
, 4) || o
->call_depth
)
1208 die("merging of trees %s and %s failed",
1209 sha1_to_hex(head
->object
.sha1
),
1210 sha1_to_hex(merge
->object
.sha1
));
1215 if (unmerged_cache()) {
1216 struct string_list
*entries
, *re_head
, *re_merge
;
1218 string_list_clear(&o
->current_file_set
, 1);
1219 string_list_clear(&o
->current_directory_set
, 1);
1220 get_files_dirs(o
, head
);
1221 get_files_dirs(o
, merge
);
1223 entries
= get_unmerged();
1224 re_head
= get_renames(o
, head
, common
, head
, merge
, entries
);
1225 re_merge
= get_renames(o
, merge
, common
, head
, merge
, entries
);
1226 clean
= process_renames(o
, re_head
, re_merge
);
1227 for (i
= 0; i
< entries
->nr
; i
++) {
1228 const char *path
= entries
->items
[i
].string
;
1229 struct stage_data
*e
= entries
->items
[i
].util
;
1231 && !process_entry(o
, path
, e
))
1235 string_list_clear(re_merge
, 0);
1236 string_list_clear(re_head
, 0);
1237 string_list_clear(entries
, 1);
1244 *result
= write_tree_from_memory(o
);
1249 static struct commit_list
*reverse_commit_list(struct commit_list
*list
)
1251 struct commit_list
*next
= NULL
, *current
, *backup
;
1252 for (current
= list
; current
; current
= backup
) {
1253 backup
= current
->next
;
1254 current
->next
= next
;
1261 * Merge the commits h1 and h2, return the resulting virtual
1262 * commit object and a flag indicating the cleanness of the merge.
1264 int merge_recursive(struct merge_options
*o
,
1267 struct commit_list
*ca
,
1268 struct commit
**result
)
1270 struct commit_list
*iter
;
1271 struct commit
*merged_common_ancestors
;
1272 struct tree
*mrtree
= mrtree
;
1276 output(o
, 4, "Merging:");
1277 output_commit_title(o
, h1
);
1278 output_commit_title(o
, h2
);
1282 ca
= get_merge_bases(h1
, h2
, 1);
1283 ca
= reverse_commit_list(ca
);
1287 output(o
, 5, "found %u common ancestor(s):", commit_list_count(ca
));
1288 for (iter
= ca
; iter
; iter
= iter
->next
)
1289 output_commit_title(o
, iter
->item
);
1292 merged_common_ancestors
= pop_commit(&ca
);
1293 if (merged_common_ancestors
== NULL
) {
1294 /* if there is no common ancestor, make an empty tree */
1295 struct tree
*tree
= xcalloc(1, sizeof(struct tree
));
1297 tree
->object
.parsed
= 1;
1298 tree
->object
.type
= OBJ_TREE
;
1299 pretend_sha1_file(NULL
, 0, OBJ_TREE
, tree
->object
.sha1
);
1300 merged_common_ancestors
= make_virtual_commit(tree
, "ancestor");
1303 for (iter
= ca
; iter
; iter
= iter
->next
) {
1304 const char *saved_b1
, *saved_b2
;
1307 * When the merge fails, the result contains files
1308 * with conflict markers. The cleanness flag is
1309 * ignored, it was never actually used, as result of
1310 * merge_trees has always overwritten it: the committed
1311 * "conflicts" were already resolved.
1314 saved_b1
= o
->branch1
;
1315 saved_b2
= o
->branch2
;
1316 o
->branch1
= "Temporary merge branch 1";
1317 o
->branch2
= "Temporary merge branch 2";
1318 merge_recursive(o
, merged_common_ancestors
, iter
->item
,
1319 NULL
, &merged_common_ancestors
);
1320 o
->branch1
= saved_b1
;
1321 o
->branch2
= saved_b2
;
1324 if (!merged_common_ancestors
)
1325 die("merge returned no commit");
1332 clean
= merge_trees(o
, h1
->tree
, h2
->tree
, merged_common_ancestors
->tree
,
1335 if (o
->call_depth
) {
1336 *result
= make_virtual_commit(mrtree
, "merged tree");
1337 commit_list_insert(h1
, &(*result
)->parents
);
1338 commit_list_insert(h2
, &(*result
)->parents
->next
);
1344 static struct commit
*get_ref(const unsigned char *sha1
, const char *name
)
1346 struct object
*object
;
1348 object
= deref_tag(parse_object(sha1
), name
, strlen(name
));
1351 if (object
->type
== OBJ_TREE
)
1352 return make_virtual_commit((struct tree
*)object
, name
);
1353 if (object
->type
!= OBJ_COMMIT
)
1355 if (parse_commit((struct commit
*)object
))
1357 return (struct commit
*)object
;
1360 int merge_recursive_generic(struct merge_options
*o
,
1361 const unsigned char *head
,
1362 const unsigned char *merge
,
1364 const unsigned char **base_list
,
1365 struct commit
**result
)
1367 int clean
, index_fd
;
1368 struct lock_file
*lock
= xcalloc(1, sizeof(struct lock_file
));
1369 struct commit
*head_commit
= get_ref(head
, o
->branch1
);
1370 struct commit
*next_commit
= get_ref(merge
, o
->branch2
);
1371 struct commit_list
*ca
= NULL
;
1375 for (i
= 0; i
< num_base_list
; ++i
) {
1376 struct commit
*base
;
1377 if (!(base
= get_ref(base_list
[i
], sha1_to_hex(base_list
[i
]))))
1378 return error("Could not parse object '%s'",
1379 sha1_to_hex(base_list
[i
]));
1380 commit_list_insert(base
, &ca
);
1384 index_fd
= hold_locked_index(lock
, 1);
1385 clean
= merge_recursive(o
, head_commit
, next_commit
, ca
,
1387 if (active_cache_changed
&&
1388 (write_cache(index_fd
, active_cache
, active_nr
) ||
1389 commit_locked_index(lock
)))
1390 return error("Unable to write index.");
1392 return clean
? 0 : 1;
1395 static int merge_recursive_config(const char *var
, const char *value
, void *cb
)
1397 struct merge_options
*o
= cb
;
1398 if (!strcasecmp(var
, "merge.verbosity")) {
1399 o
->verbosity
= git_config_int(var
, value
);
1402 if (!strcasecmp(var
, "diff.renamelimit")) {
1403 o
->diff_rename_limit
= git_config_int(var
, value
);
1406 if (!strcasecmp(var
, "merge.renamelimit")) {
1407 o
->merge_rename_limit
= git_config_int(var
, value
);
1410 return git_xmerge_config(var
, value
, cb
);
1413 void init_merge_options(struct merge_options
*o
)
1415 memset(o
, 0, sizeof(struct merge_options
));
1417 o
->buffer_output
= 1;
1418 o
->diff_rename_limit
= -1;
1419 o
->merge_rename_limit
= -1;
1420 git_config(merge_recursive_config
, o
);
1421 if (getenv("GIT_MERGE_VERBOSITY"))
1423 strtol(getenv("GIT_MERGE_VERBOSITY"), NULL
, 10);
1424 if (o
->verbosity
>= 5)
1425 o
->buffer_output
= 0;
1426 strbuf_init(&o
->obuf
, 0);
1427 memset(&o
->current_file_set
, 0, sizeof(struct string_list
));
1428 o
->current_file_set
.strdup_strings
= 1;
1429 memset(&o
->current_directory_set
, 0, sizeof(struct string_list
));
1430 o
->current_directory_set
.strdup_strings
= 1;