2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
6 #include "git-compat-util.h"
7 #include "merge-recursive.h"
10 #include "cache-tree.h"
12 #include "commit-reach.h"
17 #include "environment.h"
22 #include "match-trees.h"
23 #include "name-hash.h"
24 #include "object-file.h"
25 #include "object-name.h"
26 #include "object-store-ll.h"
28 #include "repository.h"
30 #include "sparse-index.h"
31 #include "string-list.h"
34 #include "tree-walk.h"
35 #include "unpack-trees.h"
36 #include "xdiff-interface.h"
38 struct merge_options_internal
{
40 int needed_rename_limit
;
41 struct hashmap current_file_dir_set
;
42 struct string_list df_conflict_file_set
;
43 struct unpack_trees_options unpack_opts
;
44 struct index_state orig_index
;
47 struct path_hashmap_entry
{
48 struct hashmap_entry e
;
49 char path
[FLEX_ARRAY
];
52 static int path_hashmap_cmp(const void *cmp_data UNUSED
,
53 const struct hashmap_entry
*eptr
,
54 const struct hashmap_entry
*entry_or_key
,
57 const struct path_hashmap_entry
*a
, *b
;
58 const char *key
= keydata
;
60 a
= container_of(eptr
, const struct path_hashmap_entry
, e
);
61 b
= container_of(entry_or_key
, const struct path_hashmap_entry
, e
);
63 return fspathcmp(a
->path
, key
? key
: b
->path
);
67 * For dir_rename_entry, directory names are stored as a full path from the
68 * toplevel of the repository and do not include a trailing '/'. Also:
70 * dir: original name of directory being renamed
71 * non_unique_new_dir: if true, could not determine new_dir
72 * new_dir: final name of directory being renamed
73 * possible_new_dirs: temporary used to help determine new_dir; see comments
74 * in get_directory_renames() for details
76 struct dir_rename_entry
{
77 struct hashmap_entry ent
;
79 unsigned non_unique_new_dir
:1;
80 struct strbuf new_dir
;
81 struct string_list possible_new_dirs
;
84 static struct dir_rename_entry
*dir_rename_find_entry(struct hashmap
*hashmap
,
87 struct dir_rename_entry key
;
91 hashmap_entry_init(&key
.ent
, strhash(dir
));
93 return hashmap_get_entry(hashmap
, &key
, ent
, NULL
);
96 static int dir_rename_cmp(const void *cmp_data UNUSED
,
97 const struct hashmap_entry
*eptr
,
98 const struct hashmap_entry
*entry_or_key
,
99 const void *keydata UNUSED
)
101 const struct dir_rename_entry
*e1
, *e2
;
103 e1
= container_of(eptr
, const struct dir_rename_entry
, ent
);
104 e2
= container_of(entry_or_key
, const struct dir_rename_entry
, ent
);
106 return strcmp(e1
->dir
, e2
->dir
);
109 static void dir_rename_init(struct hashmap
*map
)
111 hashmap_init(map
, dir_rename_cmp
, NULL
, 0);
114 static void dir_rename_entry_init(struct dir_rename_entry
*entry
,
117 hashmap_entry_init(&entry
->ent
, strhash(directory
));
118 entry
->dir
= directory
;
119 entry
->non_unique_new_dir
= 0;
120 strbuf_init(&entry
->new_dir
, 0);
121 string_list_init_nodup(&entry
->possible_new_dirs
);
124 struct collision_entry
{
125 struct hashmap_entry ent
;
127 struct string_list source_files
;
128 unsigned reported_already
:1;
131 static struct collision_entry
*collision_find_entry(struct hashmap
*hashmap
,
134 struct collision_entry key
;
136 hashmap_entry_init(&key
.ent
, strhash(target_file
));
137 key
.target_file
= target_file
;
138 return hashmap_get_entry(hashmap
, &key
, ent
, NULL
);
141 static int collision_cmp(const void *cmp_data UNUSED
,
142 const struct hashmap_entry
*eptr
,
143 const struct hashmap_entry
*entry_or_key
,
144 const void *keydata UNUSED
)
146 const struct collision_entry
*e1
, *e2
;
148 e1
= container_of(eptr
, const struct collision_entry
, ent
);
149 e2
= container_of(entry_or_key
, const struct collision_entry
, ent
);
151 return strcmp(e1
->target_file
, e2
->target_file
);
154 static void collision_init(struct hashmap
*map
)
156 hashmap_init(map
, collision_cmp
, NULL
, 0);
159 static void flush_output(struct merge_options
*opt
)
161 if (opt
->buffer_output
< 2 && opt
->obuf
.len
) {
162 fputs(opt
->obuf
.buf
, stdout
);
163 strbuf_reset(&opt
->obuf
);
167 __attribute__((format (printf
, 2, 3)))
168 static int err(struct merge_options
*opt
, const char *err
, ...)
172 if (opt
->buffer_output
< 2)
175 strbuf_complete(&opt
->obuf
, '\n');
176 strbuf_addstr(&opt
->obuf
, "error: ");
178 va_start(params
, err
);
179 strbuf_vaddf(&opt
->obuf
, err
, params
);
181 if (opt
->buffer_output
> 1)
182 strbuf_addch(&opt
->obuf
, '\n');
184 error("%s", opt
->obuf
.buf
);
185 strbuf_reset(&opt
->obuf
);
191 static struct tree
*shift_tree_object(struct repository
*repo
,
192 struct tree
*one
, struct tree
*two
,
193 const char *subtree_shift
)
195 struct object_id shifted
;
197 if (!*subtree_shift
) {
198 shift_tree(repo
, &one
->object
.oid
, &two
->object
.oid
, &shifted
, 0);
200 shift_tree_by(repo
, &one
->object
.oid
, &two
->object
.oid
, &shifted
,
203 if (oideq(&two
->object
.oid
, &shifted
))
205 return lookup_tree(repo
, &shifted
);
208 static inline void set_commit_tree(struct commit
*c
, struct tree
*t
)
213 static struct commit
*make_virtual_commit(struct repository
*repo
,
217 struct commit
*commit
= alloc_commit_node(repo
);
219 set_merge_remote_desc(commit
, comment
, (struct object
*)commit
);
220 set_commit_tree(commit
, tree
);
221 commit
->object
.parsed
= 1;
230 RENAME_ONE_FILE_TO_ONE
,
231 RENAME_ONE_FILE_TO_TWO
,
232 RENAME_TWO_FILES_TO_ONE
236 * Since we want to write the index eventually, we cannot reuse the index
237 * for these (temporary) data.
240 struct diff_filespec stages
[4]; /* mostly for oid & mode; maybe path */
241 struct rename_conflict_info
*rename_conflict_info
;
242 unsigned processed
:1;
246 unsigned processed
:1;
247 struct diff_filepair
*pair
;
248 const char *branch
; /* branch that the rename occurred on */
250 * If directory rename detection affected this rename, what was its
251 * original type ('A' or 'R') and it's original destination before
252 * the directory rename (otherwise, '\0' and NULL for these two vars).
254 char dir_rename_original_type
;
255 char *dir_rename_original_dest
;
257 * Purpose of src_entry and dst_entry:
259 * If 'before' is renamed to 'after' then src_entry will contain
260 * the versions of 'before' from the merge_base, HEAD, and MERGE in
261 * stages 1, 2, and 3; dst_entry will contain the respective
262 * versions of 'after' in corresponding locations. Thus, we have a
263 * total of six modes and oids, though some will be null. (Stage 0
264 * is ignored; we're interested in handling conflicts.)
266 * Since we don't turn on break-rewrites by default, neither
267 * src_entry nor dst_entry can have all three of their stages have
268 * non-null oids, meaning at most four of the six will be non-null.
269 * Also, since this is a rename, both src_entry and dst_entry will
270 * have at least one non-null oid, meaning at least two will be
271 * non-null. Of the six oids, a typical rename will have three be
272 * non-null. Only two implies a rename/delete, and four implies a
275 struct stage_data
*src_entry
;
276 struct stage_data
*dst_entry
;
279 struct rename_conflict_info
{
280 enum rename_type rename_type
;
285 static inline void setup_rename_conflict_info(enum rename_type rename_type
,
286 struct merge_options
*opt
,
290 struct rename_conflict_info
*ci
;
293 * When we have two renames involved, it's easiest to get the
294 * correct things into stage 2 and 3, and to make sure that the
295 * content merge puts HEAD before the other branch if we just
296 * ensure that branch1 == opt->branch1. So, simply flip arguments
297 * around if we don't have that.
299 if (ren2
&& ren1
->branch
!= opt
->branch1
) {
300 setup_rename_conflict_info(rename_type
, opt
, ren2
, ren1
);
305 ci
->rename_type
= rename_type
;
309 ci
->ren1
->dst_entry
->processed
= 0;
310 ci
->ren1
->dst_entry
->rename_conflict_info
= ci
;
312 ci
->ren2
->dst_entry
->rename_conflict_info
= ci
;
316 static int show(struct merge_options
*opt
, int v
)
318 return (!opt
->priv
->call_depth
&& opt
->verbosity
>= v
) ||
322 __attribute__((format (printf
, 3, 4)))
323 static void output(struct merge_options
*opt
, int v
, const char *fmt
, ...)
330 strbuf_addchars(&opt
->obuf
, ' ', opt
->priv
->call_depth
* 2);
333 strbuf_vaddf(&opt
->obuf
, fmt
, ap
);
336 strbuf_addch(&opt
->obuf
, '\n');
337 if (!opt
->buffer_output
)
341 static void repo_output_commit_title(struct merge_options
*opt
,
342 struct repository
*repo
,
343 struct commit
*commit
)
345 struct merge_remote_desc
*desc
;
347 strbuf_addchars(&opt
->obuf
, ' ', opt
->priv
->call_depth
* 2);
348 desc
= merge_remote_util(commit
);
350 strbuf_addf(&opt
->obuf
, "virtual %s\n", desc
->name
);
352 strbuf_repo_add_unique_abbrev(&opt
->obuf
, repo
,
355 strbuf_addch(&opt
->obuf
, ' ');
356 if (repo_parse_commit(repo
, commit
) != 0)
357 strbuf_addstr(&opt
->obuf
, _("(bad commit)\n"));
360 const char *msg
= repo_get_commit_buffer(repo
, commit
, NULL
);
361 int len
= find_commit_subject(msg
, &title
);
363 strbuf_addf(&opt
->obuf
, "%.*s\n", len
, title
);
364 repo_unuse_commit_buffer(repo
, commit
, msg
);
370 static void output_commit_title(struct merge_options
*opt
, struct commit
*commit
)
372 repo_output_commit_title(opt
, the_repository
, commit
);
375 static int add_cacheinfo(struct merge_options
*opt
,
376 const struct diff_filespec
*blob
,
377 const char *path
, int stage
, int refresh
, int options
)
379 struct index_state
*istate
= opt
->repo
->index
;
380 struct cache_entry
*ce
;
383 ce
= make_cache_entry(istate
, blob
->mode
, &blob
->oid
, path
, stage
, 0);
385 return err(opt
, _("add_cacheinfo failed for path '%s'; merge aborting."), path
);
387 ret
= add_index_entry(istate
, ce
, options
);
389 struct cache_entry
*nce
;
391 nce
= refresh_cache_entry(istate
, ce
,
392 CE_MATCH_REFRESH
| CE_MATCH_IGNORE_MISSING
);
394 return err(opt
, _("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path
);
396 ret
= add_index_entry(istate
, nce
, options
);
401 static inline int merge_detect_rename(struct merge_options
*opt
)
403 return (opt
->detect_renames
>= 0) ? opt
->detect_renames
: 1;
406 static void init_tree_desc_from_tree(struct tree_desc
*desc
, struct tree
*tree
)
408 if (parse_tree(tree
) < 0)
410 init_tree_desc(desc
, &tree
->object
.oid
, tree
->buffer
, tree
->size
);
413 static int unpack_trees_start(struct merge_options
*opt
,
419 struct tree_desc t
[3];
420 struct index_state tmp_index
= INDEX_STATE_INIT(opt
->repo
);
422 memset(&opt
->priv
->unpack_opts
, 0, sizeof(opt
->priv
->unpack_opts
));
423 if (opt
->priv
->call_depth
)
424 opt
->priv
->unpack_opts
.index_only
= 1;
426 opt
->priv
->unpack_opts
.update
= 1;
427 /* FIXME: should only do this if !overwrite_ignore */
428 opt
->priv
->unpack_opts
.preserve_ignored
= 0;
430 opt
->priv
->unpack_opts
.merge
= 1;
431 opt
->priv
->unpack_opts
.head_idx
= 2;
432 opt
->priv
->unpack_opts
.fn
= threeway_merge
;
433 opt
->priv
->unpack_opts
.src_index
= opt
->repo
->index
;
434 opt
->priv
->unpack_opts
.dst_index
= &tmp_index
;
435 opt
->priv
->unpack_opts
.aggressive
= !merge_detect_rename(opt
);
436 setup_unpack_trees_porcelain(&opt
->priv
->unpack_opts
, "merge");
438 init_tree_desc_from_tree(t
+0, common
);
439 init_tree_desc_from_tree(t
+1, head
);
440 init_tree_desc_from_tree(t
+2, merge
);
442 rc
= unpack_trees(3, t
, &opt
->priv
->unpack_opts
);
443 cache_tree_free(&opt
->repo
->index
->cache_tree
);
446 * Update opt->repo->index to match the new results, AFTER saving a
447 * copy in opt->priv->orig_index. Update src_index to point to the
448 * saved copy. (verify_uptodate() checks src_index, and the original
449 * index is the one that had the necessary modification timestamps.)
451 opt
->priv
->orig_index
= *opt
->repo
->index
;
452 *opt
->repo
->index
= tmp_index
;
453 opt
->priv
->unpack_opts
.src_index
= &opt
->priv
->orig_index
;
458 static void unpack_trees_finish(struct merge_options
*opt
)
460 discard_index(&opt
->priv
->orig_index
);
461 clear_unpack_trees_porcelain(&opt
->priv
->unpack_opts
);
464 static int save_files_dirs(const struct object_id
*oid UNUSED
,
465 struct strbuf
*base
, const char *path
,
466 unsigned int mode
, void *context
)
468 struct path_hashmap_entry
*entry
;
469 int baselen
= base
->len
;
470 struct merge_options
*opt
= context
;
472 strbuf_addstr(base
, path
);
474 FLEX_ALLOC_MEM(entry
, path
, base
->buf
, base
->len
);
475 hashmap_entry_init(&entry
->e
, fspathhash(entry
->path
));
476 hashmap_add(&opt
->priv
->current_file_dir_set
, &entry
->e
);
478 strbuf_setlen(base
, baselen
);
479 return (S_ISDIR(mode
) ? READ_TREE_RECURSIVE
: 0);
482 static void get_files_dirs(struct merge_options
*opt
, struct tree
*tree
)
484 struct pathspec match_all
;
485 memset(&match_all
, 0, sizeof(match_all
));
486 read_tree(opt
->repo
, tree
,
487 &match_all
, save_files_dirs
, opt
);
490 static int get_tree_entry_if_blob(struct repository
*r
,
491 const struct object_id
*tree
,
493 struct diff_filespec
*dfs
)
497 ret
= get_tree_entry(r
, tree
, path
, &dfs
->oid
, &dfs
->mode
);
498 if (S_ISDIR(dfs
->mode
)) {
499 oidcpy(&dfs
->oid
, null_oid());
506 * Returns an index_entry instance which doesn't have to correspond to
507 * a real cache entry in Git's index.
509 static struct stage_data
*insert_stage_data(struct repository
*r
,
511 struct tree
*o
, struct tree
*a
, struct tree
*b
,
512 struct string_list
*entries
)
514 struct string_list_item
*item
;
515 struct stage_data
*e
= xcalloc(1, sizeof(struct stage_data
));
516 get_tree_entry_if_blob(r
, &o
->object
.oid
, path
, &e
->stages
[1]);
517 get_tree_entry_if_blob(r
, &a
->object
.oid
, path
, &e
->stages
[2]);
518 get_tree_entry_if_blob(r
, &b
->object
.oid
, path
, &e
->stages
[3]);
519 item
= string_list_insert(entries
, path
);
525 * Create a dictionary mapping file names to stage_data objects. The
526 * dictionary contains one entry for every path with a non-zero stage entry.
528 static struct string_list
*get_unmerged(struct index_state
*istate
)
530 struct string_list
*unmerged
= xmalloc(sizeof(struct string_list
));
533 string_list_init_dup(unmerged
);
535 /* TODO: audit for interaction with sparse-index. */
536 ensure_full_index(istate
);
537 for (i
= 0; i
< istate
->cache_nr
; i
++) {
538 struct string_list_item
*item
;
539 struct stage_data
*e
;
540 const struct cache_entry
*ce
= istate
->cache
[i
];
544 item
= string_list_lookup(unmerged
, ce
->name
);
546 item
= string_list_insert(unmerged
, ce
->name
);
547 item
->util
= xcalloc(1, sizeof(struct stage_data
));
550 e
->stages
[ce_stage(ce
)].mode
= ce
->ce_mode
;
551 oidcpy(&e
->stages
[ce_stage(ce
)].oid
, &ce
->oid
);
557 static int string_list_df_name_compare(const char *one
, const char *two
)
559 int onelen
= strlen(one
);
560 int twolen
= strlen(two
);
562 * Here we only care that entries for D/F conflicts are
563 * adjacent, in particular with the file of the D/F conflict
564 * appearing before files below the corresponding directory.
565 * The order of the rest of the list is irrelevant for us.
567 * To achieve this, we sort with df_name_compare and provide
568 * the mode S_IFDIR so that D/F conflicts will sort correctly.
569 * We use the mode S_IFDIR for everything else for simplicity,
570 * since in other cases any changes in their order due to
571 * sorting cause no problems for us.
573 int cmp
= df_name_compare(one
, onelen
, S_IFDIR
,
574 two
, twolen
, S_IFDIR
);
576 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
577 * that 'foo' comes before 'foo/bar'.
581 return onelen
- twolen
;
584 static void record_df_conflict_files(struct merge_options
*opt
,
585 struct string_list
*entries
)
587 /* If there is a D/F conflict and the file for such a conflict
588 * currently exists in the working tree, we want to allow it to be
589 * removed to make room for the corresponding directory if needed.
590 * The files underneath the directories of such D/F conflicts will
591 * be processed before the corresponding file involved in the D/F
592 * conflict. If the D/F directory ends up being removed by the
593 * merge, then we won't have to touch the D/F file. If the D/F
594 * directory needs to be written to the working copy, then the D/F
595 * file will simply be removed (in make_room_for_path()) to make
596 * room for the necessary paths. Note that if both the directory
597 * and the file need to be present, then the D/F file will be
598 * reinstated with a new unique name at the time it is processed.
600 struct string_list df_sorted_entries
= STRING_LIST_INIT_NODUP
;
601 const char *last_file
= NULL
;
606 * If we're merging merge-bases, we don't want to bother with
607 * any working directory changes.
609 if (opt
->priv
->call_depth
)
612 /* Ensure D/F conflicts are adjacent in the entries list. */
613 for (i
= 0; i
< entries
->nr
; i
++) {
614 struct string_list_item
*next
= &entries
->items
[i
];
615 string_list_append(&df_sorted_entries
, next
->string
)->util
=
618 df_sorted_entries
.cmp
= string_list_df_name_compare
;
619 string_list_sort(&df_sorted_entries
);
621 string_list_clear(&opt
->priv
->df_conflict_file_set
, 1);
622 for (i
= 0; i
< df_sorted_entries
.nr
; i
++) {
623 const char *path
= df_sorted_entries
.items
[i
].string
;
624 int len
= strlen(path
);
625 struct stage_data
*e
= df_sorted_entries
.items
[i
].util
;
628 * Check if last_file & path correspond to a D/F conflict;
629 * i.e. whether path is last_file+'/'+<something>.
630 * If so, record that it's okay to remove last_file to make
631 * room for path and friends if needed.
635 memcmp(path
, last_file
, last_len
) == 0 &&
636 path
[last_len
] == '/') {
637 string_list_insert(&opt
->priv
->df_conflict_file_set
, last_file
);
641 * Determine whether path could exist as a file in the
642 * working directory as a possible D/F conflict. This
643 * will only occur when it exists in stage 2 as a
646 if (S_ISREG(e
->stages
[2].mode
) || S_ISLNK(e
->stages
[2].mode
)) {
653 string_list_clear(&df_sorted_entries
, 0);
656 static int update_stages(struct merge_options
*opt
, const char *path
,
657 const struct diff_filespec
*o
,
658 const struct diff_filespec
*a
,
659 const struct diff_filespec
*b
)
663 * NOTE: It is usually a bad idea to call update_stages on a path
664 * before calling update_file on that same path, since it can
665 * sometimes lead to spurious "refusing to lose untracked file..."
666 * messages from update_file (via make_room_for path via
667 * would_lose_untracked). Instead, reverse the order of the calls
668 * (executing update_file first and then update_stages).
671 int options
= ADD_CACHE_OK_TO_ADD
| ADD_CACHE_SKIP_DFCHECK
;
673 if (remove_file_from_index(opt
->repo
->index
, path
))
676 if (add_cacheinfo(opt
, o
, path
, 1, 0, options
))
679 if (add_cacheinfo(opt
, a
, path
, 2, 0, options
))
682 if (add_cacheinfo(opt
, b
, path
, 3, 0, options
))
687 static void update_entry(struct stage_data
*entry
,
688 struct diff_filespec
*o
,
689 struct diff_filespec
*a
,
690 struct diff_filespec
*b
)
692 entry
->processed
= 0;
693 entry
->stages
[1].mode
= o
->mode
;
694 entry
->stages
[2].mode
= a
->mode
;
695 entry
->stages
[3].mode
= b
->mode
;
696 oidcpy(&entry
->stages
[1].oid
, &o
->oid
);
697 oidcpy(&entry
->stages
[2].oid
, &a
->oid
);
698 oidcpy(&entry
->stages
[3].oid
, &b
->oid
);
701 static int remove_file(struct merge_options
*opt
, int clean
,
702 const char *path
, int no_wd
)
704 int update_cache
= opt
->priv
->call_depth
|| clean
;
705 int update_working_directory
= !opt
->priv
->call_depth
&& !no_wd
;
708 if (remove_file_from_index(opt
->repo
->index
, path
))
711 if (update_working_directory
) {
713 struct cache_entry
*ce
;
714 ce
= index_file_exists(opt
->repo
->index
, path
, strlen(path
),
716 if (ce
&& ce_stage(ce
) == 0 && strcmp(path
, ce
->name
))
719 if (remove_path(path
))
725 /* add a string to a strbuf, but converting "/" to "_" */
726 static void add_flattened_path(struct strbuf
*out
, const char *s
)
729 strbuf_addstr(out
, s
);
730 for (; i
< out
->len
; i
++)
731 if (out
->buf
[i
] == '/')
735 static char *unique_path(struct merge_options
*opt
,
739 struct path_hashmap_entry
*entry
;
740 struct strbuf newpath
= STRBUF_INIT
;
744 strbuf_addf(&newpath
, "%s~", path
);
745 add_flattened_path(&newpath
, branch
);
747 base_len
= newpath
.len
;
748 while (hashmap_get_from_hash(&opt
->priv
->current_file_dir_set
,
749 fspathhash(newpath
.buf
), newpath
.buf
) ||
750 (!opt
->priv
->call_depth
&& file_exists(newpath
.buf
))) {
751 strbuf_setlen(&newpath
, base_len
);
752 strbuf_addf(&newpath
, "_%d", suffix
++);
755 FLEX_ALLOC_MEM(entry
, path
, newpath
.buf
, newpath
.len
);
756 hashmap_entry_init(&entry
->e
, fspathhash(entry
->path
));
757 hashmap_add(&opt
->priv
->current_file_dir_set
, &entry
->e
);
758 return strbuf_detach(&newpath
, NULL
);
762 * Check whether a directory in the index is in the way of an incoming
763 * file. Return 1 if so. If check_working_copy is non-zero, also
764 * check the working directory. If empty_ok is non-zero, also return
765 * 0 in the case where the working-tree dir exists but is empty.
767 static int dir_in_way(struct index_state
*istate
, const char *path
,
768 int check_working_copy
, int empty_ok
)
771 struct strbuf dirpath
= STRBUF_INIT
;
774 strbuf_addstr(&dirpath
, path
);
775 strbuf_addch(&dirpath
, '/');
777 pos
= index_name_pos(istate
, dirpath
.buf
, dirpath
.len
);
781 if (pos
< istate
->cache_nr
&&
782 !strncmp(dirpath
.buf
, istate
->cache
[pos
]->name
, dirpath
.len
)) {
783 strbuf_release(&dirpath
);
787 strbuf_release(&dirpath
);
788 return check_working_copy
&& !lstat(path
, &st
) && S_ISDIR(st
.st_mode
) &&
789 !(empty_ok
&& is_empty_dir(path
)) &&
790 !has_symlink_leading_path(path
, strlen(path
));
794 * Returns whether path was tracked in the index before the merge started,
795 * and its oid and mode match the specified values
797 static int was_tracked_and_matches(struct merge_options
*opt
, const char *path
,
798 const struct diff_filespec
*blob
)
800 int pos
= index_name_pos(&opt
->priv
->orig_index
, path
, strlen(path
));
801 struct cache_entry
*ce
;
804 /* we were not tracking this path before the merge */
807 /* See if the file we were tracking before matches */
808 ce
= opt
->priv
->orig_index
.cache
[pos
];
809 return (oideq(&ce
->oid
, &blob
->oid
) && ce
->ce_mode
== blob
->mode
);
813 * Returns whether path was tracked in the index before the merge started
815 static int was_tracked(struct merge_options
*opt
, const char *path
)
817 int pos
= index_name_pos(&opt
->priv
->orig_index
, path
, strlen(path
));
820 /* we were tracking this path before the merge */
826 static int would_lose_untracked(struct merge_options
*opt
, const char *path
)
828 struct index_state
*istate
= opt
->repo
->index
;
831 * This may look like it can be simplified to:
832 * return !was_tracked(opt, path) && file_exists(path)
833 * but it can't. This function needs to know whether path was in
834 * the working tree due to EITHER having been tracked in the index
835 * before the merge OR having been put into the working copy and
836 * index by unpack_trees(). Due to that either-or requirement, we
837 * check the current index instead of the original one.
839 * Note that we do not need to worry about merge-recursive itself
840 * updating the index after unpack_trees() and before calling this
841 * function, because we strictly require all code paths in
842 * merge-recursive to update the working tree first and the index
843 * second. Doing otherwise would break
844 * update_file()/would_lose_untracked(); see every comment in this
845 * file which mentions "update_stages".
847 int pos
= index_name_pos(istate
, path
, strlen(path
));
851 while (pos
< istate
->cache_nr
&&
852 !strcmp(path
, istate
->cache
[pos
]->name
)) {
854 * If stage #0, it is definitely tracked.
855 * If it has stage #2 then it was tracked
856 * before this merge started. All other
857 * cases the path was not tracked.
859 switch (ce_stage(istate
->cache
[pos
])) {
866 return file_exists(path
);
869 static int was_dirty(struct merge_options
*opt
, const char *path
)
871 struct cache_entry
*ce
;
874 if (opt
->priv
->call_depth
|| !was_tracked(opt
, path
))
877 ce
= index_file_exists(opt
->priv
->unpack_opts
.src_index
,
878 path
, strlen(path
), ignore_case
);
879 dirty
= verify_uptodate(ce
, &opt
->priv
->unpack_opts
) != 0;
883 static int make_room_for_path(struct merge_options
*opt
, const char *path
)
886 const char *msg
= _("failed to create path '%s'%s");
888 /* Unlink any D/F conflict files that are in the way */
889 for (i
= 0; i
< opt
->priv
->df_conflict_file_set
.nr
; i
++) {
890 const char *df_path
= opt
->priv
->df_conflict_file_set
.items
[i
].string
;
891 size_t pathlen
= strlen(path
);
892 size_t df_pathlen
= strlen(df_path
);
893 if (df_pathlen
< pathlen
&&
894 path
[df_pathlen
] == '/' &&
895 strncmp(path
, df_path
, df_pathlen
) == 0) {
897 _("Removing %s to make room for subdirectory\n"),
900 unsorted_string_list_delete_item(&opt
->priv
->df_conflict_file_set
,
906 /* Make sure leading directories are created */
907 status
= safe_create_leading_directories_const(path
);
909 if (status
== SCLD_EXISTS
)
910 /* something else exists */
911 return err(opt
, msg
, path
, _(": perhaps a D/F conflict?"));
912 return err(opt
, msg
, path
, "");
916 * Do not unlink a file in the work tree if we are not
919 if (would_lose_untracked(opt
, path
))
920 return err(opt
, _("refusing to lose untracked file at '%s'"),
923 /* Successful unlink is good.. */
926 /* .. and so is no existing file */
929 /* .. but not some other error (who really cares what?) */
930 return err(opt
, msg
, path
, _(": perhaps a D/F conflict?"));
933 static int update_file_flags(struct merge_options
*opt
,
934 const struct diff_filespec
*contents
,
941 if (opt
->priv
->call_depth
)
945 enum object_type type
;
949 if (S_ISGITLINK(contents
->mode
)) {
951 * We may later decide to recursively descend into
952 * the submodule directory and update its index
953 * and/or work tree, but we do not do that now.
959 buf
= repo_read_object_file(the_repository
, &contents
->oid
,
962 ret
= err(opt
, _("cannot read object %s '%s'"),
963 oid_to_hex(&contents
->oid
), path
);
966 if (type
!= OBJ_BLOB
) {
967 ret
= err(opt
, _("blob expected for %s '%s'"),
968 oid_to_hex(&contents
->oid
), path
);
971 if (S_ISREG(contents
->mode
)) {
972 struct strbuf strbuf
= STRBUF_INIT
;
973 if (convert_to_working_tree(opt
->repo
->index
,
974 path
, buf
, size
, &strbuf
, NULL
)) {
977 buf
= strbuf_detach(&strbuf
, NULL
);
981 if (make_room_for_path(opt
, path
) < 0) {
985 if (S_ISREG(contents
->mode
) ||
986 (!has_symlinks
&& S_ISLNK(contents
->mode
))) {
988 int mode
= (contents
->mode
& 0100 ? 0777 : 0666);
990 fd
= open(path
, O_WRONLY
| O_TRUNC
| O_CREAT
, mode
);
992 ret
= err(opt
, _("failed to open '%s': %s"),
993 path
, strerror(errno
));
996 write_in_full(fd
, buf
, size
);
998 } else if (S_ISLNK(contents
->mode
)) {
999 char *lnk
= xmemdupz(buf
, size
);
1000 safe_create_leading_directories_const(path
);
1002 if (symlink(lnk
, path
))
1003 ret
= err(opt
, _("failed to symlink '%s': %s"),
1004 path
, strerror(errno
));
1008 _("do not know what to do with %06o %s '%s'"),
1009 contents
->mode
, oid_to_hex(&contents
->oid
), path
);
1014 if (!ret
&& update_cache
) {
1015 int refresh
= (!opt
->priv
->call_depth
&&
1016 contents
->mode
!= S_IFGITLINK
);
1017 if (add_cacheinfo(opt
, contents
, path
, 0, refresh
,
1018 ADD_CACHE_OK_TO_ADD
))
1024 static int update_file(struct merge_options
*opt
,
1026 const struct diff_filespec
*contents
,
1029 return update_file_flags(opt
, contents
, path
,
1030 opt
->priv
->call_depth
|| clean
, !opt
->priv
->call_depth
);
1033 /* Low level file merging, update and removal */
1035 struct merge_file_info
{
1036 struct diff_filespec blob
; /* mostly use oid & mode; sometimes path */
1041 static int merge_3way(struct merge_options
*opt
,
1042 mmbuffer_t
*result_buf
,
1043 const struct diff_filespec
*o
,
1044 const struct diff_filespec
*a
,
1045 const struct diff_filespec
*b
,
1046 const char *branch1
,
1047 const char *branch2
,
1048 const int extra_marker_size
)
1050 mmfile_t orig
, src1
, src2
;
1051 struct ll_merge_options ll_opts
= LL_MERGE_OPTIONS_INIT
;
1052 char *base
, *name1
, *name2
;
1053 enum ll_merge_result merge_status
;
1055 ll_opts
.renormalize
= opt
->renormalize
;
1056 ll_opts
.extra_marker_size
= extra_marker_size
;
1057 ll_opts
.xdl_opts
= opt
->xdl_opts
;
1058 ll_opts
.conflict_style
= opt
->conflict_style
;
1060 if (opt
->priv
->call_depth
) {
1061 ll_opts
.virtual_ancestor
= 1;
1062 ll_opts
.variant
= 0;
1064 switch (opt
->recursive_variant
) {
1065 case MERGE_VARIANT_OURS
:
1066 ll_opts
.variant
= XDL_MERGE_FAVOR_OURS
;
1068 case MERGE_VARIANT_THEIRS
:
1069 ll_opts
.variant
= XDL_MERGE_FAVOR_THEIRS
;
1072 ll_opts
.variant
= 0;
1077 assert(a
->path
&& b
->path
&& o
->path
&& opt
->ancestor
);
1078 if (strcmp(a
->path
, b
->path
) || strcmp(a
->path
, o
->path
) != 0) {
1079 base
= mkpathdup("%s:%s", opt
->ancestor
, o
->path
);
1080 name1
= mkpathdup("%s:%s", branch1
, a
->path
);
1081 name2
= mkpathdup("%s:%s", branch2
, b
->path
);
1083 base
= mkpathdup("%s", opt
->ancestor
);
1084 name1
= mkpathdup("%s", branch1
);
1085 name2
= mkpathdup("%s", branch2
);
1088 read_mmblob(&orig
, &o
->oid
);
1089 read_mmblob(&src1
, &a
->oid
);
1090 read_mmblob(&src2
, &b
->oid
);
1093 * FIXME: Using a->path for normalization rules in ll_merge could be
1094 * wrong if we renamed from a->path to b->path. We should use the
1095 * target path for where the file will be written.
1097 merge_status
= ll_merge(result_buf
, a
->path
, &orig
, base
,
1098 &src1
, name1
, &src2
, name2
,
1099 opt
->repo
->index
, &ll_opts
);
1100 if (merge_status
== LL_MERGE_BINARY_CONFLICT
)
1101 warning("Cannot merge binary files: %s (%s vs. %s)",
1102 a
->path
, name1
, name2
);
1110 return merge_status
;
1113 static int find_first_merges(struct repository
*repo
,
1114 struct object_array
*result
, const char *path
,
1115 struct commit
*a
, struct commit
*b
)
1118 struct object_array merges
= OBJECT_ARRAY_INIT
;
1119 struct commit
*commit
;
1120 int contains_another
;
1122 char merged_revision
[GIT_MAX_HEXSZ
+ 2];
1123 const char *rev_args
[] = { "rev-list", "--merges", "--ancestry-path",
1124 "--all", merged_revision
, NULL
};
1125 struct rev_info revs
;
1126 struct setup_revision_opt rev_opts
;
1128 memset(result
, 0, sizeof(struct object_array
));
1129 memset(&rev_opts
, 0, sizeof(rev_opts
));
1131 /* get all revisions that merge commit a */
1132 xsnprintf(merged_revision
, sizeof(merged_revision
), "^%s",
1133 oid_to_hex(&a
->object
.oid
));
1134 repo_init_revisions(repo
, &revs
, NULL
);
1135 /* FIXME: can't handle linked worktrees in submodules yet */
1136 revs
.single_worktree
= path
!= NULL
;
1137 setup_revisions(ARRAY_SIZE(rev_args
)-1, rev_args
, &revs
, &rev_opts
);
1139 /* save all revisions from the above list that contain b */
1140 if (prepare_revision_walk(&revs
))
1141 die("revision walk setup failed");
1142 while ((commit
= get_revision(&revs
)) != NULL
) {
1143 struct object
*o
= &(commit
->object
);
1144 int ret
= repo_in_merge_bases(repo
, b
, commit
);
1146 object_array_clear(&merges
);
1147 release_revisions(&revs
);
1151 add_object_array(o
, NULL
, &merges
);
1153 reset_revision_walk();
1155 /* Now we've got all merges that contain a and b. Prune all
1156 * merges that contain another found merge and save them in
1159 for (i
= 0; i
< merges
.nr
; i
++) {
1160 struct commit
*m1
= (struct commit
*) merges
.objects
[i
].item
;
1162 contains_another
= 0;
1163 for (j
= 0; j
< merges
.nr
; j
++) {
1164 struct commit
*m2
= (struct commit
*) merges
.objects
[j
].item
;
1166 int ret
= repo_in_merge_bases(repo
, m2
, m1
);
1168 object_array_clear(&merges
);
1169 release_revisions(&revs
);
1173 contains_another
= 1;
1179 if (!contains_another
)
1180 add_object_array(merges
.objects
[i
].item
, NULL
, result
);
1183 object_array_clear(&merges
);
1184 release_revisions(&revs
);
1188 static void print_commit(struct repository
*repo
, struct commit
*commit
)
1190 struct strbuf sb
= STRBUF_INIT
;
1191 struct pretty_print_context ctx
= {0};
1192 ctx
.date_mode
.type
= DATE_NORMAL
;
1193 /* FIXME: Merge this with output_commit_title() */
1194 assert(!merge_remote_util(commit
));
1195 repo_format_commit_message(repo
, commit
, " %h: %m %s", &sb
, &ctx
);
1196 fprintf(stderr
, "%s\n", sb
.buf
);
1197 strbuf_release(&sb
);
1200 static int is_valid(const struct diff_filespec
*dfs
)
1202 return dfs
->mode
!= 0 && !is_null_oid(&dfs
->oid
);
1205 static int merge_submodule(struct merge_options
*opt
,
1206 struct object_id
*result
, const char *path
,
1207 const struct object_id
*base
, const struct object_id
*a
,
1208 const struct object_id
*b
)
1210 struct repository subrepo
;
1212 struct commit
*commit_base
, *commit_a
, *commit_b
;
1214 struct object_array merges
;
1217 int search
= !opt
->priv
->call_depth
;
1219 /* store a in result in case we fail */
1220 /* FIXME: This is the WRONG resolution for the recursive case when
1221 * we need to be careful to avoid accidentally matching either side.
1222 * Should probably use o instead there, much like we do for merging
1227 /* we can not handle deletion conflicts */
1228 if (is_null_oid(base
))
1235 if (repo_submodule_init(&subrepo
, opt
->repo
, path
, null_oid())) {
1236 output(opt
, 1, _("Failed to merge submodule %s (not checked out)"), path
);
1240 if (!(commit_base
= lookup_commit_reference(&subrepo
, base
)) ||
1241 !(commit_a
= lookup_commit_reference(&subrepo
, a
)) ||
1242 !(commit_b
= lookup_commit_reference(&subrepo
, b
))) {
1243 output(opt
, 1, _("Failed to merge submodule %s (commits not present)"), path
);
1247 /* check whether both changes are forward */
1248 ret2
= repo_in_merge_bases(&subrepo
, commit_base
, commit_a
);
1250 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1255 ret2
= repo_in_merge_bases(&subrepo
, commit_base
, commit_b
);
1257 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1262 output(opt
, 1, _("Failed to merge submodule %s (commits don't follow merge-base)"), path
);
1266 /* Case #1: a is contained in b or vice versa */
1267 ret2
= repo_in_merge_bases(&subrepo
, commit_a
, commit_b
);
1269 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1276 output(opt
, 3, _("Fast-forwarding submodule %s to the following commit:"), path
);
1277 repo_output_commit_title(opt
, &subrepo
, commit_b
);
1278 } else if (show(opt
, 2))
1279 output(opt
, 2, _("Fast-forwarding submodule %s"), path
);
1286 ret2
= repo_in_merge_bases(&subrepo
, commit_b
, commit_a
);
1288 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1295 output(opt
, 3, _("Fast-forwarding submodule %s to the following commit:"), path
);
1296 repo_output_commit_title(opt
, &subrepo
, commit_a
);
1297 } else if (show(opt
, 2))
1298 output(opt
, 2, _("Fast-forwarding submodule %s"), path
);
1307 * Case #2: There are one or more merges that contain a and b in
1308 * the submodule. If there is only one, then present it as a
1309 * suggestion to the user, but leave it marked unmerged so the
1310 * user needs to confirm the resolution.
1313 /* Skip the search if makes no sense to the calling context. */
1317 /* find commit which merges them */
1318 parent_count
= find_first_merges(&subrepo
, &merges
, path
,
1319 commit_a
, commit_b
);
1320 switch (parent_count
) {
1322 output(opt
, 1,_("Failed to merge submodule %s (repository corrupt)"), path
);
1326 output(opt
, 1, _("Failed to merge submodule %s (merge following commits not found)"), path
);
1330 output(opt
, 1, _("Failed to merge submodule %s (not fast-forward)"), path
);
1331 output(opt
, 2, _("Found a possible merge resolution for the submodule:\n"));
1332 print_commit(&subrepo
, (struct commit
*) merges
.objects
[0].item
);
1334 "If this is correct simply add it to the index "
1337 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"
1338 "which will accept this suggestion.\n"),
1339 oid_to_hex(&merges
.objects
[0].item
->oid
), path
);
1343 output(opt
, 1, _("Failed to merge submodule %s (multiple merges found)"), path
);
1344 for (i
= 0; i
< merges
.nr
; i
++)
1345 print_commit(&subrepo
, (struct commit
*) merges
.objects
[i
].item
);
1348 object_array_clear(&merges
);
1350 repo_clear(&subrepo
);
1354 static int merge_mode_and_contents(struct merge_options
*opt
,
1355 const struct diff_filespec
*o
,
1356 const struct diff_filespec
*a
,
1357 const struct diff_filespec
*b
,
1358 const char *filename
,
1359 const char *branch1
,
1360 const char *branch2
,
1361 const int extra_marker_size
,
1362 struct merge_file_info
*result
)
1364 if (opt
->branch1
!= branch1
) {
1366 * It's weird getting a reverse merge with HEAD on the bottom
1367 * side of the conflict markers and the other branch on the
1370 return merge_mode_and_contents(opt
, o
, b
, a
,
1373 extra_marker_size
, result
);
1379 if ((S_IFMT
& a
->mode
) != (S_IFMT
& b
->mode
)) {
1382 * FIXME: This is a bad resolution for recursive case; for
1383 * the recursive case we want something that is unlikely to
1384 * accidentally match either side. Also, while it makes
1385 * sense to prefer regular files over symlinks, it doesn't
1386 * make sense to prefer regular files over submodules.
1388 if (S_ISREG(a
->mode
)) {
1389 result
->blob
.mode
= a
->mode
;
1390 oidcpy(&result
->blob
.oid
, &a
->oid
);
1392 result
->blob
.mode
= b
->mode
;
1393 oidcpy(&result
->blob
.oid
, &b
->oid
);
1396 if (!oideq(&a
->oid
, &o
->oid
) && !oideq(&b
->oid
, &o
->oid
))
1402 if (a
->mode
== b
->mode
|| a
->mode
== o
->mode
)
1403 result
->blob
.mode
= b
->mode
;
1405 result
->blob
.mode
= a
->mode
;
1406 if (b
->mode
!= o
->mode
) {
1412 if (oideq(&a
->oid
, &b
->oid
) || oideq(&a
->oid
, &o
->oid
))
1413 oidcpy(&result
->blob
.oid
, &b
->oid
);
1414 else if (oideq(&b
->oid
, &o
->oid
))
1415 oidcpy(&result
->blob
.oid
, &a
->oid
);
1416 else if (S_ISREG(a
->mode
)) {
1417 mmbuffer_t result_buf
;
1418 int ret
= 0, merge_status
;
1420 merge_status
= merge_3way(opt
, &result_buf
, o
, a
, b
,
1424 if ((merge_status
< 0) || !result_buf
.ptr
)
1425 ret
= err(opt
, _("failed to execute internal merge"));
1428 write_object_file(result_buf
.ptr
, result_buf
.size
,
1429 OBJ_BLOB
, &result
->blob
.oid
))
1430 ret
= err(opt
, _("unable to add %s to database"),
1433 free(result_buf
.ptr
);
1436 /* FIXME: bug, what if modes didn't match? */
1437 result
->clean
= (merge_status
== 0);
1438 } else if (S_ISGITLINK(a
->mode
)) {
1439 int clean
= merge_submodule(opt
, &result
->blob
.oid
,
1446 result
->clean
= clean
;
1447 } else if (S_ISLNK(a
->mode
)) {
1448 switch (opt
->recursive_variant
) {
1449 case MERGE_VARIANT_NORMAL
:
1450 oidcpy(&result
->blob
.oid
, &a
->oid
);
1451 if (!oideq(&a
->oid
, &b
->oid
))
1454 case MERGE_VARIANT_OURS
:
1455 oidcpy(&result
->blob
.oid
, &a
->oid
);
1457 case MERGE_VARIANT_THEIRS
:
1458 oidcpy(&result
->blob
.oid
, &b
->oid
);
1462 BUG("unsupported object type in the tree");
1466 output(opt
, 2, _("Auto-merging %s"), filename
);
1471 static int handle_rename_via_dir(struct merge_options
*opt
,
1472 struct rename_conflict_info
*ci
)
1475 * Handle file adds that need to be renamed due to directory rename
1476 * detection. This differs from handle_rename_normal, because
1477 * there is no content merge to do; just move the file into the
1478 * desired final location.
1480 const struct rename
*ren
= ci
->ren1
;
1481 const struct diff_filespec
*dest
= ren
->pair
->two
;
1482 char *file_path
= dest
->path
;
1483 int mark_conflicted
= (opt
->detect_directory_renames
==
1484 MERGE_DIRECTORY_RENAMES_CONFLICT
);
1485 assert(ren
->dir_rename_original_dest
);
1487 if (!opt
->priv
->call_depth
&& would_lose_untracked(opt
, dest
->path
)) {
1488 mark_conflicted
= 1;
1489 file_path
= unique_path(opt
, dest
->path
, ren
->branch
);
1490 output(opt
, 1, _("Error: Refusing to lose untracked file at %s; "
1491 "writing to %s instead."),
1492 dest
->path
, file_path
);
1495 if (mark_conflicted
) {
1497 * Write the file in worktree at file_path. In the index,
1498 * only record the file at dest->path in the appropriate
1501 if (update_file(opt
, 0, dest
, file_path
))
1503 if (file_path
!= dest
->path
)
1505 if (update_stages(opt
, dest
->path
, NULL
,
1506 ren
->branch
== opt
->branch1
? dest
: NULL
,
1507 ren
->branch
== opt
->branch1
? NULL
: dest
))
1509 return 0; /* not clean, but conflicted */
1511 /* Update dest->path both in index and in worktree */
1512 if (update_file(opt
, 1, dest
, dest
->path
))
1514 return 1; /* clean */
1518 static int handle_change_delete(struct merge_options
*opt
,
1519 const char *path
, const char *old_path
,
1520 const struct diff_filespec
*o
,
1521 const struct diff_filespec
*changed
,
1522 const char *change_branch
,
1523 const char *delete_branch
,
1524 const char *change
, const char *change_past
)
1526 char *alt_path
= NULL
;
1527 const char *update_path
= path
;
1530 if (dir_in_way(opt
->repo
->index
, path
, !opt
->priv
->call_depth
, 0) ||
1531 (!opt
->priv
->call_depth
&& would_lose_untracked(opt
, path
))) {
1532 update_path
= alt_path
= unique_path(opt
, path
, change_branch
);
1535 if (opt
->priv
->call_depth
) {
1537 * We cannot arbitrarily accept either a_sha or b_sha as
1538 * correct; since there is no true "middle point" between
1539 * them, simply reuse the base version for virtual merge base.
1541 ret
= remove_file_from_index(opt
->repo
->index
, path
);
1543 ret
= update_file(opt
, 0, o
, update_path
);
1546 * Despite the four nearly duplicate messages and argument
1547 * lists below and the ugliness of the nested if-statements,
1548 * having complete messages makes the job easier for
1551 * The slight variance among the cases is due to the fact
1553 * 1) directory/file conflicts (in effect if
1554 * !alt_path) could cause us to need to write the
1555 * file to a different path.
1556 * 2) renames (in effect if !old_path) could mean that
1557 * there are two names for the path that the user
1558 * may know the file by.
1562 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1563 "and %s in %s. Version %s of %s left in tree."),
1564 change
, path
, delete_branch
, change_past
,
1565 change_branch
, change_branch
, path
);
1567 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1568 "and %s to %s in %s. Version %s of %s left in tree."),
1569 change
, old_path
, delete_branch
, change_past
, path
,
1570 change_branch
, change_branch
, path
);
1574 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1575 "and %s in %s. Version %s of %s left in tree at %s."),
1576 change
, path
, delete_branch
, change_past
,
1577 change_branch
, change_branch
, path
, alt_path
);
1579 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1580 "and %s to %s in %s. Version %s of %s left in tree at %s."),
1581 change
, old_path
, delete_branch
, change_past
, path
,
1582 change_branch
, change_branch
, path
, alt_path
);
1586 * No need to call update_file() on path when change_branch ==
1587 * opt->branch1 && !alt_path, since that would needlessly touch
1588 * path. We could call update_file_flags() with update_cache=0
1589 * and update_wd=0, but that's a no-op.
1591 if (change_branch
!= opt
->branch1
|| alt_path
)
1592 ret
= update_file(opt
, 0, changed
, update_path
);
1599 static int handle_rename_delete(struct merge_options
*opt
,
1600 struct rename_conflict_info
*ci
)
1602 const struct rename
*ren
= ci
->ren1
;
1603 const struct diff_filespec
*orig
= ren
->pair
->one
;
1604 const struct diff_filespec
*dest
= ren
->pair
->two
;
1605 const char *rename_branch
= ren
->branch
;
1606 const char *delete_branch
= (opt
->branch1
== ren
->branch
?
1607 opt
->branch2
: opt
->branch1
);
1609 if (handle_change_delete(opt
,
1610 opt
->priv
->call_depth
? orig
->path
: dest
->path
,
1611 opt
->priv
->call_depth
? NULL
: orig
->path
,
1613 rename_branch
, delete_branch
,
1614 _("rename"), _("renamed")))
1617 if (opt
->priv
->call_depth
)
1618 return remove_file_from_index(opt
->repo
->index
, dest
->path
);
1620 return update_stages(opt
, dest
->path
, NULL
,
1621 rename_branch
== opt
->branch1
? dest
: NULL
,
1622 rename_branch
== opt
->branch1
? NULL
: dest
);
1625 static int handle_file_collision(struct merge_options
*opt
,
1626 const char *collide_path
,
1627 const char *prev_path1
,
1628 const char *prev_path2
,
1629 const char *branch1
, const char *branch2
,
1630 struct diff_filespec
*a
,
1631 struct diff_filespec
*b
)
1633 struct merge_file_info mfi
;
1634 struct diff_filespec null
;
1635 char *alt_path
= NULL
;
1636 const char *update_path
= collide_path
;
1639 * It's easiest to get the correct things into stage 2 and 3, and
1640 * to make sure that the content merge puts HEAD before the other
1641 * branch if we just ensure that branch1 == opt->branch1. So, simply
1642 * flip arguments around if we don't have that.
1644 if (branch1
!= opt
->branch1
) {
1645 return handle_file_collision(opt
, collide_path
,
1646 prev_path2
, prev_path1
,
1651 /* Remove rename sources if rename/add or rename/rename(2to1) */
1653 remove_file(opt
, 1, prev_path1
,
1654 opt
->priv
->call_depth
|| would_lose_untracked(opt
, prev_path1
));
1656 remove_file(opt
, 1, prev_path2
,
1657 opt
->priv
->call_depth
|| would_lose_untracked(opt
, prev_path2
));
1660 * Remove the collision path, if it wouldn't cause dirty contents
1661 * or an untracked file to get lost. We'll either overwrite with
1662 * merged contents, or just write out to differently named files.
1664 if (was_dirty(opt
, collide_path
)) {
1665 output(opt
, 1, _("Refusing to lose dirty file at %s"),
1667 update_path
= alt_path
= unique_path(opt
, collide_path
, "merged");
1668 } else if (would_lose_untracked(opt
, collide_path
)) {
1670 * Only way we get here is if both renames were from
1671 * a directory rename AND user had an untracked file
1672 * at the location where both files end up after the
1673 * two directory renames. See testcase 10d of t6043.
1675 output(opt
, 1, _("Refusing to lose untracked file at "
1676 "%s, even though it's in the way."),
1678 update_path
= alt_path
= unique_path(opt
, collide_path
, "merged");
1681 * FIXME: It's possible that the two files are identical
1682 * and that the current working copy happens to match, in
1683 * which case we are unnecessarily touching the working
1684 * tree file. It's not a likely enough scenario that I
1685 * want to code up the checks for it and a better fix is
1686 * available if we restructure how unpack_trees() and
1687 * merge-recursive interoperate anyway, so punting for
1690 remove_file(opt
, 0, collide_path
, 0);
1693 /* Store things in diff_filespecs for functions that need it */
1694 null
.path
= (char *)collide_path
;
1695 oidcpy(&null
.oid
, null_oid());
1698 if (merge_mode_and_contents(opt
, &null
, a
, b
, collide_path
,
1699 branch1
, branch2
, opt
->priv
->call_depth
* 2, &mfi
))
1701 mfi
.clean
&= !alt_path
;
1702 if (update_file(opt
, mfi
.clean
, &mfi
.blob
, update_path
))
1704 if (!mfi
.clean
&& !opt
->priv
->call_depth
&&
1705 update_stages(opt
, collide_path
, NULL
, a
, b
))
1709 * FIXME: If both a & b both started with conflicts (only possible
1710 * if they came from a rename/rename(2to1)), but had IDENTICAL
1711 * contents including those conflicts, then in the next line we claim
1712 * it was clean. If someone cares about this case, we should have the
1713 * caller notify us if we started with conflicts.
1718 static int handle_rename_add(struct merge_options
*opt
,
1719 struct rename_conflict_info
*ci
)
1721 /* a was renamed to c, and a separate c was added. */
1722 struct diff_filespec
*a
= ci
->ren1
->pair
->one
;
1723 struct diff_filespec
*c
= ci
->ren1
->pair
->two
;
1724 char *path
= c
->path
;
1725 char *prev_path_desc
;
1726 struct merge_file_info mfi
;
1728 const char *rename_branch
= ci
->ren1
->branch
;
1729 const char *add_branch
= (opt
->branch1
== rename_branch
?
1730 opt
->branch2
: opt
->branch1
);
1731 int other_stage
= (ci
->ren1
->branch
== opt
->branch1
? 3 : 2);
1733 output(opt
, 1, _("CONFLICT (rename/add): "
1734 "Rename %s->%s in %s. Added %s in %s"),
1735 a
->path
, c
->path
, rename_branch
,
1736 c
->path
, add_branch
);
1738 prev_path_desc
= xstrfmt("version of %s from %s", path
, a
->path
);
1739 ci
->ren1
->src_entry
->stages
[other_stage
].path
= a
->path
;
1740 if (merge_mode_and_contents(opt
, a
, c
,
1741 &ci
->ren1
->src_entry
->stages
[other_stage
],
1743 opt
->branch1
, opt
->branch2
,
1744 1 + opt
->priv
->call_depth
* 2, &mfi
))
1746 free(prev_path_desc
);
1748 ci
->ren1
->dst_entry
->stages
[other_stage
].path
= mfi
.blob
.path
= c
->path
;
1749 return handle_file_collision(opt
,
1750 c
->path
, a
->path
, NULL
,
1751 rename_branch
, add_branch
,
1753 &ci
->ren1
->dst_entry
->stages
[other_stage
]);
1756 static char *find_path_for_conflict(struct merge_options
*opt
,
1758 const char *branch1
,
1759 const char *branch2
)
1761 char *new_path
= NULL
;
1762 if (dir_in_way(opt
->repo
->index
, path
, !opt
->priv
->call_depth
, 0)) {
1763 new_path
= unique_path(opt
, path
, branch1
);
1764 output(opt
, 1, _("%s is a directory in %s adding "
1766 path
, branch2
, new_path
);
1767 } else if (would_lose_untracked(opt
, path
)) {
1768 new_path
= unique_path(opt
, path
, branch1
);
1769 output(opt
, 1, _("Refusing to lose untracked file"
1770 " at %s; adding as %s instead"),
1778 * Toggle the stage number between "ours" and "theirs" (2 and 3).
1780 static inline int flip_stage(int stage
)
1782 return (2 + 3) - stage
;
1785 static int handle_rename_rename_1to2(struct merge_options
*opt
,
1786 struct rename_conflict_info
*ci
)
1788 /* One file was renamed in both branches, but to different names. */
1789 struct merge_file_info mfi
;
1790 struct diff_filespec
*add
;
1791 struct diff_filespec
*o
= ci
->ren1
->pair
->one
;
1792 struct diff_filespec
*a
= ci
->ren1
->pair
->two
;
1793 struct diff_filespec
*b
= ci
->ren2
->pair
->two
;
1796 output(opt
, 1, _("CONFLICT (rename/rename): "
1797 "Rename \"%s\"->\"%s\" in branch \"%s\" "
1798 "rename \"%s\"->\"%s\" in \"%s\"%s"),
1799 o
->path
, a
->path
, ci
->ren1
->branch
,
1800 o
->path
, b
->path
, ci
->ren2
->branch
,
1801 opt
->priv
->call_depth
? _(" (left unresolved)") : "");
1803 path_desc
= xstrfmt("%s and %s, both renamed from %s",
1804 a
->path
, b
->path
, o
->path
);
1805 if (merge_mode_and_contents(opt
, o
, a
, b
, path_desc
,
1806 ci
->ren1
->branch
, ci
->ren2
->branch
,
1807 opt
->priv
->call_depth
* 2, &mfi
))
1811 if (opt
->priv
->call_depth
)
1812 remove_file_from_index(opt
->repo
->index
, o
->path
);
1815 * For each destination path, we need to see if there is a
1816 * rename/add collision. If not, we can write the file out
1817 * to the specified location.
1819 add
= &ci
->ren1
->dst_entry
->stages
[flip_stage(2)];
1820 if (is_valid(add
)) {
1821 add
->path
= mfi
.blob
.path
= a
->path
;
1822 if (handle_file_collision(opt
, a
->path
,
1826 &mfi
.blob
, add
) < 0)
1829 char *new_path
= find_path_for_conflict(opt
, a
->path
,
1832 if (update_file(opt
, 0, &mfi
.blob
,
1833 new_path
? new_path
: a
->path
))
1836 if (!opt
->priv
->call_depth
&&
1837 update_stages(opt
, a
->path
, NULL
, a
, NULL
))
1841 if (!mfi
.clean
&& mfi
.blob
.mode
== a
->mode
&&
1842 oideq(&mfi
.blob
.oid
, &a
->oid
)) {
1844 * Getting here means we were attempting to merge a binary
1845 * blob. Since we can't merge binaries, the merge algorithm
1846 * just takes one side. But we don't want to copy the
1847 * contents of one side to both paths; we'd rather use the
1848 * original content at the given path for each path.
1850 oidcpy(&mfi
.blob
.oid
, &b
->oid
);
1851 mfi
.blob
.mode
= b
->mode
;
1853 add
= &ci
->ren2
->dst_entry
->stages
[flip_stage(3)];
1854 if (is_valid(add
)) {
1855 add
->path
= mfi
.blob
.path
= b
->path
;
1856 if (handle_file_collision(opt
, b
->path
,
1860 add
, &mfi
.blob
) < 0)
1863 char *new_path
= find_path_for_conflict(opt
, b
->path
,
1866 if (update_file(opt
, 0, &mfi
.blob
,
1867 new_path
? new_path
: b
->path
))
1870 if (!opt
->priv
->call_depth
&&
1871 update_stages(opt
, b
->path
, NULL
, NULL
, b
))
1878 static int handle_rename_rename_2to1(struct merge_options
*opt
,
1879 struct rename_conflict_info
*ci
)
1881 /* Two files, a & b, were renamed to the same thing, c. */
1882 struct diff_filespec
*a
= ci
->ren1
->pair
->one
;
1883 struct diff_filespec
*b
= ci
->ren2
->pair
->one
;
1884 struct diff_filespec
*c1
= ci
->ren1
->pair
->two
;
1885 struct diff_filespec
*c2
= ci
->ren2
->pair
->two
;
1886 char *path
= c1
->path
; /* == c2->path */
1887 char *path_side_1_desc
;
1888 char *path_side_2_desc
;
1889 struct merge_file_info mfi_c1
;
1890 struct merge_file_info mfi_c2
;
1891 int ostage1
, ostage2
;
1893 output(opt
, 1, _("CONFLICT (rename/rename): "
1894 "Rename %s->%s in %s. "
1895 "Rename %s->%s in %s"),
1896 a
->path
, c1
->path
, ci
->ren1
->branch
,
1897 b
->path
, c2
->path
, ci
->ren2
->branch
);
1899 path_side_1_desc
= xstrfmt("version of %s from %s", path
, a
->path
);
1900 path_side_2_desc
= xstrfmt("version of %s from %s", path
, b
->path
);
1901 ostage1
= ci
->ren1
->branch
== opt
->branch1
? 3 : 2;
1902 ostage2
= flip_stage(ostage1
);
1903 ci
->ren1
->src_entry
->stages
[ostage1
].path
= a
->path
;
1904 ci
->ren2
->src_entry
->stages
[ostage2
].path
= b
->path
;
1905 if (merge_mode_and_contents(opt
, a
, c1
,
1906 &ci
->ren1
->src_entry
->stages
[ostage1
],
1908 opt
->branch1
, opt
->branch2
,
1909 1 + opt
->priv
->call_depth
* 2, &mfi_c1
) ||
1910 merge_mode_and_contents(opt
, b
,
1911 &ci
->ren2
->src_entry
->stages
[ostage2
],
1912 c2
, path_side_2_desc
,
1913 opt
->branch1
, opt
->branch2
,
1914 1 + opt
->priv
->call_depth
* 2, &mfi_c2
))
1916 free(path_side_1_desc
);
1917 free(path_side_2_desc
);
1918 mfi_c1
.blob
.path
= path
;
1919 mfi_c2
.blob
.path
= path
;
1921 return handle_file_collision(opt
, path
, a
->path
, b
->path
,
1922 ci
->ren1
->branch
, ci
->ren2
->branch
,
1923 &mfi_c1
.blob
, &mfi_c2
.blob
);
1927 * Get the diff_filepairs changed between o_tree and tree.
1929 static struct diff_queue_struct
*get_diffpairs(struct merge_options
*opt
,
1930 struct tree
*o_tree
,
1933 struct diff_queue_struct
*ret
;
1934 struct diff_options opts
;
1936 repo_diff_setup(opt
->repo
, &opts
);
1937 opts
.flags
.recursive
= 1;
1938 opts
.flags
.rename_empty
= 0;
1939 opts
.detect_rename
= merge_detect_rename(opt
);
1941 * We do not have logic to handle the detection of copies. In
1942 * fact, it may not even make sense to add such logic: would we
1943 * really want a change to a base file to be propagated through
1944 * multiple other files by a merge?
1946 if (opts
.detect_rename
> DIFF_DETECT_RENAME
)
1947 opts
.detect_rename
= DIFF_DETECT_RENAME
;
1948 opts
.rename_limit
= (opt
->rename_limit
>= 0) ? opt
->rename_limit
: 7000;
1949 opts
.rename_score
= opt
->rename_score
;
1950 opts
.show_rename_progress
= opt
->show_rename_progress
;
1951 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1952 diff_setup_done(&opts
);
1953 diff_tree_oid(&o_tree
->object
.oid
, &tree
->object
.oid
, "", &opts
);
1954 diffcore_std(&opts
);
1955 if (opts
.needed_rename_limit
> opt
->priv
->needed_rename_limit
)
1956 opt
->priv
->needed_rename_limit
= opts
.needed_rename_limit
;
1958 ret
= xmalloc(sizeof(*ret
));
1959 *ret
= diff_queued_diff
;
1961 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1962 diff_queued_diff
.nr
= 0;
1963 diff_queued_diff
.queue
= NULL
;
1968 static int tree_has_path(struct repository
*r
, struct tree
*tree
,
1971 struct object_id hashy
;
1972 unsigned short mode_o
;
1974 return !get_tree_entry(r
,
1975 &tree
->object
.oid
, path
,
1980 * Return a new string that replaces the beginning portion (which matches
1981 * entry->dir), with entry->new_dir. In perl-speak:
1982 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);
1984 * Caller must ensure that old_path starts with entry->dir + '/'.
1986 static char *apply_dir_rename(struct dir_rename_entry
*entry
,
1987 const char *old_path
)
1989 struct strbuf new_path
= STRBUF_INIT
;
1992 if (entry
->non_unique_new_dir
)
1995 oldlen
= strlen(entry
->dir
);
1996 if (entry
->new_dir
.len
== 0)
1998 * If someone renamed/merged a subdirectory into the root
1999 * directory (e.g. 'some/subdir' -> ''), then we want to
2002 * as the rename; we need to make old_path + oldlen advance
2003 * past the '/' character.
2006 newlen
= entry
->new_dir
.len
+ (strlen(old_path
) - oldlen
) + 1;
2007 strbuf_grow(&new_path
, newlen
);
2008 strbuf_addbuf(&new_path
, &entry
->new_dir
);
2009 strbuf_addstr(&new_path
, &old_path
[oldlen
]);
2011 return strbuf_detach(&new_path
, NULL
);
2014 static void get_renamed_dir_portion(const char *old_path
, const char *new_path
,
2015 char **old_dir
, char **new_dir
)
2017 char *end_of_old
, *end_of_new
;
2019 /* Default return values: NULL, meaning no rename */
2025 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
2026 * the "e/foo.c" part is the same, we just want to know that
2027 * "a/b/c/d" was renamed to "a/b/some/thing/else"
2028 * so, for this example, this function returns "a/b/c/d" in
2029 * *old_dir and "a/b/some/thing/else" in *new_dir.
2033 * If the basename of the file changed, we don't care. We want
2034 * to know which portion of the directory, if any, changed.
2036 end_of_old
= strrchr(old_path
, '/');
2037 end_of_new
= strrchr(new_path
, '/');
2040 * If end_of_old is NULL, old_path wasn't in a directory, so there
2041 * could not be a directory rename (our rule elsewhere that a
2042 * directory which still exists is not considered to have been
2043 * renamed means the root directory can never be renamed -- because
2044 * the root directory always exists).
2047 return; /* Note: *old_dir and *new_dir are still NULL */
2050 * If new_path contains no directory (end_of_new is NULL), then we
2051 * have a rename of old_path's directory to the root directory.
2054 *old_dir
= xstrndup(old_path
, end_of_old
- old_path
);
2055 *new_dir
= xstrdup("");
2059 /* Find the first non-matching character traversing backwards */
2060 while (*--end_of_new
== *--end_of_old
&&
2061 end_of_old
!= old_path
&&
2062 end_of_new
!= new_path
)
2063 ; /* Do nothing; all in the while loop */
2066 * If both got back to the beginning of their strings, then the
2067 * directory didn't change at all, only the basename did.
2069 if (end_of_old
== old_path
&& end_of_new
== new_path
&&
2070 *end_of_old
== *end_of_new
)
2071 return; /* Note: *old_dir and *new_dir are still NULL */
2074 * If end_of_new got back to the beginning of its string, and
2075 * end_of_old got back to the beginning of some subdirectory, then
2076 * we have a rename/merge of a subdirectory into the root, which
2077 * needs slightly special handling.
2079 * Note: There is no need to consider the opposite case, with a
2080 * rename/merge of the root directory into some subdirectory
2081 * because as noted above the root directory always exists so it
2082 * cannot be considered to be renamed.
2084 if (end_of_new
== new_path
&&
2085 end_of_old
!= old_path
&& end_of_old
[-1] == '/') {
2086 *old_dir
= xstrndup(old_path
, --end_of_old
- old_path
);
2087 *new_dir
= xstrdup("");
2092 * We've found the first non-matching character in the directory
2093 * paths. That means the current characters we were looking at
2094 * were part of the first non-matching subdir name going back from
2095 * the end of the strings. Get the whole name by advancing both
2096 * end_of_old and end_of_new to the NEXT '/' character. That will
2097 * represent the entire directory rename.
2099 * The reason for the increment is cases like
2100 * a/b/star/foo/whatever.c -> a/b/tar/foo/random.c
2101 * After dropping the basename and going back to the first
2102 * non-matching character, we're now comparing:
2104 * and we want to be comparing:
2105 * a/b/star/ and a/b/tar/
2106 * but without the pre-increment, the one on the right would stay
2109 end_of_old
= strchr(++end_of_old
, '/');
2110 end_of_new
= strchr(++end_of_new
, '/');
2112 /* Copy the old and new directories into *old_dir and *new_dir. */
2113 *old_dir
= xstrndup(old_path
, end_of_old
- old_path
);
2114 *new_dir
= xstrndup(new_path
, end_of_new
- new_path
);
2117 static void remove_hashmap_entries(struct hashmap
*dir_renames
,
2118 struct string_list
*items_to_remove
)
2121 struct dir_rename_entry
*entry
;
2123 for (i
= 0; i
< items_to_remove
->nr
; i
++) {
2124 entry
= items_to_remove
->items
[i
].util
;
2125 hashmap_remove(dir_renames
, &entry
->ent
, NULL
);
2127 string_list_clear(items_to_remove
, 0);
2131 * See if there is a directory rename for path, and if there are any file
2132 * level conflicts for the renamed location. If there is a rename and
2133 * there are no conflicts, return the new name. Otherwise, return NULL.
2135 static char *handle_path_level_conflicts(struct merge_options
*opt
,
2137 struct dir_rename_entry
*entry
,
2138 struct hashmap
*collisions
,
2141 char *new_path
= NULL
;
2142 struct collision_entry
*collision_ent
;
2144 struct strbuf collision_paths
= STRBUF_INIT
;
2147 * entry has the mapping of old directory name to new directory name
2148 * that we want to apply to path.
2150 new_path
= apply_dir_rename(entry
, path
);
2153 /* This should only happen when entry->non_unique_new_dir set */
2154 if (!entry
->non_unique_new_dir
)
2155 BUG("entry->non_unique_new_dir not set and !new_path");
2156 output(opt
, 1, _("CONFLICT (directory rename split): "
2157 "Unclear where to place %s because directory "
2158 "%s was renamed to multiple other directories, "
2159 "with no destination getting a majority of the "
2167 * The caller needs to have ensured that it has pre-populated
2168 * collisions with all paths that map to new_path. Do a quick check
2169 * to ensure that's the case.
2171 collision_ent
= collision_find_entry(collisions
, new_path
);
2173 BUG("collision_ent is NULL");
2176 * Check for one-sided add/add/.../add conflicts, i.e.
2177 * where implicit renames from the other side doing
2178 * directory rename(s) can affect this side of history
2179 * to put multiple paths into the same location. Warn
2180 * and bail on directory renames for such paths.
2182 if (collision_ent
->reported_already
) {
2184 } else if (tree_has_path(opt
->repo
, tree
, new_path
)) {
2185 collision_ent
->reported_already
= 1;
2186 strbuf_add_separated_string_list(&collision_paths
, ", ",
2187 &collision_ent
->source_files
);
2188 output(opt
, 1, _("CONFLICT (implicit dir rename): Existing "
2189 "file/dir at %s in the way of implicit "
2190 "directory rename(s) putting the following "
2191 "path(s) there: %s."),
2192 new_path
, collision_paths
.buf
);
2194 } else if (collision_ent
->source_files
.nr
> 1) {
2195 collision_ent
->reported_already
= 1;
2196 strbuf_add_separated_string_list(&collision_paths
, ", ",
2197 &collision_ent
->source_files
);
2198 output(opt
, 1, _("CONFLICT (implicit dir rename): Cannot map "
2199 "more than one path to %s; implicit directory "
2200 "renames tried to put these paths there: %s"),
2201 new_path
, collision_paths
.buf
);
2205 /* Free memory we no longer need */
2206 strbuf_release(&collision_paths
);
2207 if (!clean
&& new_path
) {
2216 * There are a couple things we want to do at the directory level:
2217 * 1. Check for both sides renaming to the same thing, in order to avoid
2218 * implicit renaming of files that should be left in place. (See
2219 * testcase 6b in t6043 for details.)
2220 * 2. Prune directory renames if there are still files left in the
2221 * original directory. These represent a partial directory rename,
2222 * i.e. a rename where only some of the files within the directory
2223 * were renamed elsewhere. (Technically, this could be done earlier
2224 * in get_directory_renames(), except that would prevent us from
2225 * doing the previous check and thus failing testcase 6b.)
2226 * 3. Check for rename/rename(1to2) conflicts (at the directory level).
2227 * In the future, we could potentially record this info as well and
2228 * omit reporting rename/rename(1to2) conflicts for each path within
2229 * the affected directories, thus cleaning up the merge output.
2230 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the
2231 * directory level, because merging directories is fine. If it
2232 * causes conflicts for files within those merged directories, then
2233 * that should be detected at the individual path level.
2235 static void handle_directory_level_conflicts(struct merge_options
*opt
,
2236 struct hashmap
*dir_re_head
,
2238 struct hashmap
*dir_re_merge
,
2241 struct hashmap_iter iter
;
2242 struct dir_rename_entry
*head_ent
;
2243 struct dir_rename_entry
*merge_ent
;
2245 struct string_list remove_from_head
= STRING_LIST_INIT_NODUP
;
2246 struct string_list remove_from_merge
= STRING_LIST_INIT_NODUP
;
2248 hashmap_for_each_entry(dir_re_head
, &iter
, head_ent
,
2249 ent
/* member name */) {
2250 merge_ent
= dir_rename_find_entry(dir_re_merge
, head_ent
->dir
);
2252 !head_ent
->non_unique_new_dir
&&
2253 !merge_ent
->non_unique_new_dir
&&
2254 !strbuf_cmp(&head_ent
->new_dir
, &merge_ent
->new_dir
)) {
2255 /* 1. Renamed identically; remove it from both sides */
2256 string_list_append(&remove_from_head
,
2257 head_ent
->dir
)->util
= head_ent
;
2258 strbuf_release(&head_ent
->new_dir
);
2259 string_list_append(&remove_from_merge
,
2260 merge_ent
->dir
)->util
= merge_ent
;
2261 strbuf_release(&merge_ent
->new_dir
);
2262 } else if (tree_has_path(opt
->repo
, head
, head_ent
->dir
)) {
2263 /* 2. This wasn't a directory rename after all */
2264 string_list_append(&remove_from_head
,
2265 head_ent
->dir
)->util
= head_ent
;
2266 strbuf_release(&head_ent
->new_dir
);
2270 remove_hashmap_entries(dir_re_head
, &remove_from_head
);
2271 remove_hashmap_entries(dir_re_merge
, &remove_from_merge
);
2273 hashmap_for_each_entry(dir_re_merge
, &iter
, merge_ent
,
2274 ent
/* member name */) {
2275 head_ent
= dir_rename_find_entry(dir_re_head
, merge_ent
->dir
);
2276 if (tree_has_path(opt
->repo
, merge
, merge_ent
->dir
)) {
2277 /* 2. This wasn't a directory rename after all */
2278 string_list_append(&remove_from_merge
,
2279 merge_ent
->dir
)->util
= merge_ent
;
2280 } else if (head_ent
&&
2281 !head_ent
->non_unique_new_dir
&&
2282 !merge_ent
->non_unique_new_dir
) {
2283 /* 3. rename/rename(1to2) */
2285 * We can assume it's not rename/rename(1to1) because
2286 * that was case (1), already checked above. So we
2287 * know that head_ent->new_dir and merge_ent->new_dir
2288 * are different strings.
2290 output(opt
, 1, _("CONFLICT (rename/rename): "
2291 "Rename directory %s->%s in %s. "
2292 "Rename directory %s->%s in %s"),
2293 head_ent
->dir
, head_ent
->new_dir
.buf
, opt
->branch1
,
2294 head_ent
->dir
, merge_ent
->new_dir
.buf
, opt
->branch2
);
2295 string_list_append(&remove_from_head
,
2296 head_ent
->dir
)->util
= head_ent
;
2297 strbuf_release(&head_ent
->new_dir
);
2298 string_list_append(&remove_from_merge
,
2299 merge_ent
->dir
)->util
= merge_ent
;
2300 strbuf_release(&merge_ent
->new_dir
);
2304 remove_hashmap_entries(dir_re_head
, &remove_from_head
);
2305 remove_hashmap_entries(dir_re_merge
, &remove_from_merge
);
2308 static struct hashmap
*get_directory_renames(struct diff_queue_struct
*pairs
)
2310 struct hashmap
*dir_renames
;
2311 struct hashmap_iter iter
;
2312 struct dir_rename_entry
*entry
;
2316 * Typically, we think of a directory rename as all files from a
2317 * certain directory being moved to a target directory. However,
2318 * what if someone first moved two files from the original
2319 * directory in one commit, and then renamed the directory
2320 * somewhere else in a later commit? At merge time, we just know
2321 * that files from the original directory went to two different
2322 * places, and that the bulk of them ended up in the same place.
2323 * We want each directory rename to represent where the bulk of the
2324 * files from that directory end up; this function exists to find
2325 * where the bulk of the files went.
2327 * The first loop below simply iterates through the list of file
2328 * renames, finding out how often each directory rename pair
2329 * possibility occurs.
2331 dir_renames
= xmalloc(sizeof(*dir_renames
));
2332 dir_rename_init(dir_renames
);
2333 for (i
= 0; i
< pairs
->nr
; ++i
) {
2334 struct string_list_item
*item
;
2336 struct diff_filepair
*pair
= pairs
->queue
[i
];
2337 char *old_dir
, *new_dir
;
2339 /* File not part of directory rename if it wasn't renamed */
2340 if (pair
->status
!= 'R')
2343 get_renamed_dir_portion(pair
->one
->path
, pair
->two
->path
,
2344 &old_dir
, &new_dir
);
2346 /* Directory didn't change at all; ignore this one. */
2349 entry
= dir_rename_find_entry(dir_renames
, old_dir
);
2351 entry
= xmalloc(sizeof(*entry
));
2352 dir_rename_entry_init(entry
, old_dir
);
2353 hashmap_put(dir_renames
, &entry
->ent
);
2357 item
= string_list_lookup(&entry
->possible_new_dirs
, new_dir
);
2359 item
= string_list_insert(&entry
->possible_new_dirs
,
2361 item
->util
= xcalloc(1, sizeof(int));
2370 * For each directory with files moved out of it, we find out which
2371 * target directory received the most files so we can declare it to
2372 * be the "winning" target location for the directory rename. This
2373 * winner gets recorded in new_dir. If there is no winner
2374 * (multiple target directories received the same number of files),
2375 * we set non_unique_new_dir. Once we've determined the winner (or
2376 * that there is no winner), we no longer need possible_new_dirs.
2378 hashmap_for_each_entry(dir_renames
, &iter
, entry
,
2379 ent
/* member name */) {
2384 for (i
= 0; i
< entry
->possible_new_dirs
.nr
; i
++) {
2385 int *count
= entry
->possible_new_dirs
.items
[i
].util
;
2389 else if (*count
> max
) {
2391 best
= entry
->possible_new_dirs
.items
[i
].string
;
2395 entry
->non_unique_new_dir
= 1;
2397 assert(entry
->new_dir
.len
== 0);
2398 strbuf_addstr(&entry
->new_dir
, best
);
2401 * The relevant directory sub-portion of the original full
2402 * filepaths were xstrndup'ed before inserting into
2403 * possible_new_dirs, and instead of manually iterating the
2404 * list and free'ing each, just lie and tell
2405 * possible_new_dirs that it did the strdup'ing so that it
2406 * will free them for us.
2408 entry
->possible_new_dirs
.strdup_strings
= 1;
2409 string_list_clear(&entry
->possible_new_dirs
, 1);
2415 static struct dir_rename_entry
*check_dir_renamed(const char *path
,
2416 struct hashmap
*dir_renames
)
2418 char *temp
= xstrdup(path
);
2420 struct dir_rename_entry
*entry
= NULL
;
2422 while ((end
= strrchr(temp
, '/'))) {
2424 entry
= dir_rename_find_entry(dir_renames
, temp
);
2432 static void compute_collisions(struct hashmap
*collisions
,
2433 struct hashmap
*dir_renames
,
2434 struct diff_queue_struct
*pairs
)
2439 * Multiple files can be mapped to the same path due to directory
2440 * renames done by the other side of history. Since that other
2441 * side of history could have merged multiple directories into one,
2442 * if our side of history added the same file basename to each of
2443 * those directories, then all N of them would get implicitly
2444 * renamed by the directory rename detection into the same path,
2445 * and we'd get an add/add/.../add conflict, and all those adds
2446 * from *this* side of history. This is not representable in the
2447 * index, and users aren't going to easily be able to make sense of
2448 * it. So we need to provide a good warning about what's
2449 * happening, and fall back to no-directory-rename detection
2450 * behavior for those paths.
2452 * See testcases 9e and all of section 5 from t6043 for examples.
2454 collision_init(collisions
);
2456 for (i
= 0; i
< pairs
->nr
; ++i
) {
2457 struct dir_rename_entry
*dir_rename_ent
;
2458 struct collision_entry
*collision_ent
;
2460 struct diff_filepair
*pair
= pairs
->queue
[i
];
2462 if (pair
->status
!= 'A' && pair
->status
!= 'R')
2464 dir_rename_ent
= check_dir_renamed(pair
->two
->path
,
2466 if (!dir_rename_ent
)
2469 new_path
= apply_dir_rename(dir_rename_ent
, pair
->two
->path
);
2472 * dir_rename_ent->non_unique_new_path is true, which
2473 * means there is no directory rename for us to use,
2474 * which means it won't cause us any additional
2478 collision_ent
= collision_find_entry(collisions
, new_path
);
2479 if (!collision_ent
) {
2480 CALLOC_ARRAY(collision_ent
, 1);
2481 hashmap_entry_init(&collision_ent
->ent
,
2483 hashmap_put(collisions
, &collision_ent
->ent
);
2484 collision_ent
->target_file
= new_path
;
2488 string_list_insert(&collision_ent
->source_files
,
2493 static char *check_for_directory_rename(struct merge_options
*opt
,
2496 struct hashmap
*dir_renames
,
2497 struct hashmap
*dir_rename_exclusions
,
2498 struct hashmap
*collisions
,
2501 char *new_path
= NULL
;
2502 struct dir_rename_entry
*entry
= check_dir_renamed(path
, dir_renames
);
2503 struct dir_rename_entry
*oentry
= NULL
;
2509 * This next part is a little weird. We do not want to do an
2510 * implicit rename into a directory we renamed on our side, because
2511 * that will result in a spurious rename/rename(1to2) conflict. An
2513 * Base commit: dumbdir/afile, otherdir/bfile
2514 * Side 1: smrtdir/afile, otherdir/bfile
2515 * Side 2: dumbdir/afile, dumbdir/bfile
2516 * Here, while working on Side 1, we could notice that otherdir was
2517 * renamed/merged to dumbdir, and change the diff_filepair for
2518 * otherdir/bfile into a rename into dumbdir/bfile. However, Side
2519 * 2 will notice the rename from dumbdir to smrtdir, and do the
2520 * transitive rename to move it from dumbdir/bfile to
2521 * smrtdir/bfile. That gives us bfile in dumbdir vs being in
2522 * smrtdir, a rename/rename(1to2) conflict. We really just want
2523 * the file to end up in smrtdir. And the way to achieve that is
2524 * to not let Side1 do the rename to dumbdir, since we know that is
2525 * the source of one of our directory renames.
2527 * That's why oentry and dir_rename_exclusions is here.
2529 * As it turns out, this also prevents N-way transient rename
2530 * confusion; See testcases 9c and 9d of t6043.
2532 oentry
= dir_rename_find_entry(dir_rename_exclusions
, entry
->new_dir
.buf
);
2534 output(opt
, 1, _("WARNING: Avoiding applying %s -> %s rename "
2535 "to %s, because %s itself was renamed."),
2536 entry
->dir
, entry
->new_dir
.buf
, path
, entry
->new_dir
.buf
);
2538 new_path
= handle_path_level_conflicts(opt
, path
, entry
,
2540 *clean_merge
&= (new_path
!= NULL
);
2546 static void apply_directory_rename_modifications(struct merge_options
*opt
,
2547 struct diff_filepair
*pair
,
2551 struct tree
*o_tree
,
2552 struct tree
*a_tree
,
2553 struct tree
*b_tree
,
2554 struct string_list
*entries
)
2556 struct string_list_item
*item
;
2557 int stage
= (tree
== a_tree
? 2 : 3);
2561 * In all cases where we can do directory rename detection,
2562 * unpack_trees() will have read pair->two->path into the
2563 * index and the working copy. We need to remove it so that
2564 * we can instead place it at new_path. It is guaranteed to
2565 * not be untracked (unpack_trees() would have errored out
2566 * saying the file would have been overwritten), but it might
2569 update_wd
= !was_dirty(opt
, pair
->two
->path
);
2571 output(opt
, 1, _("Refusing to lose dirty file at %s"),
2573 remove_file(opt
, 1, pair
->two
->path
, !update_wd
);
2575 /* Find or create a new re->dst_entry */
2576 item
= string_list_lookup(entries
, new_path
);
2579 * Since we're renaming on this side of history, and it's
2580 * due to a directory rename on the other side of history
2581 * (which we only allow when the directory in question no
2582 * longer exists on the other side of history), the
2583 * original entry for re->dst_entry is no longer
2586 re
->dst_entry
->processed
= 1;
2589 * ...because we'll be using this new one.
2591 re
->dst_entry
= item
->util
;
2594 * re->dst_entry is for the before-dir-rename path, and we
2595 * need it to hold information for the after-dir-rename
2596 * path. Before creating a new entry, we need to mark the
2597 * old one as unnecessary (...unless it is shared by
2598 * src_entry, i.e. this didn't use to be a rename, in which
2599 * case we can just allow the normal processing to happen
2602 if (pair
->status
== 'R')
2603 re
->dst_entry
->processed
= 1;
2605 re
->dst_entry
= insert_stage_data(opt
->repo
, new_path
,
2606 o_tree
, a_tree
, b_tree
,
2608 item
= string_list_insert(entries
, new_path
);
2609 item
->util
= re
->dst_entry
;
2613 * Update the stage_data with the information about the path we are
2614 * moving into place. That slot will be empty and available for us
2615 * to write to because of the collision checks in
2616 * handle_path_level_conflicts(). In other words,
2617 * re->dst_entry->stages[stage].oid will be the null_oid, so it's
2618 * open for us to write to.
2620 * It may be tempting to actually update the index at this point as
2621 * well, using update_stages_for_stage_data(), but as per the big
2622 * "NOTE" in update_stages(), doing so will modify the current
2623 * in-memory index which will break calls to would_lose_untracked()
2624 * that we need to make. Instead, we need to just make sure that
2625 * the various handle_rename_*() functions update the index
2626 * explicitly rather than relying on unpack_trees() to have done it.
2628 get_tree_entry(opt
->repo
,
2631 &re
->dst_entry
->stages
[stage
].oid
,
2632 &re
->dst_entry
->stages
[stage
].mode
);
2635 * Record the original change status (or 'type' of change). If it
2636 * was originally an add ('A'), this lets us differentiate later
2637 * between a RENAME_DELETE conflict and RENAME_VIA_DIR (they
2638 * otherwise look the same). If it was originally a rename ('R'),
2639 * this lets us remember and report accurately about the transitive
2640 * renaming that occurred via the directory rename detection. Also,
2641 * record the original destination name.
2643 re
->dir_rename_original_type
= pair
->status
;
2644 re
->dir_rename_original_dest
= pair
->two
->path
;
2647 * We don't actually look at pair->status again, but it seems
2648 * pedagogically correct to adjust it.
2653 * Finally, record the new location.
2655 pair
->two
->path
= new_path
;
2659 * Get information of all renames which occurred in 'pairs', making use of
2660 * any implicit directory renames inferred from the other side of history.
2661 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')
2662 * to be able to associate the correct cache entries with the rename
2663 * information; tree is always equal to either a_tree or b_tree.
2665 static struct string_list
*get_renames(struct merge_options
*opt
,
2667 struct diff_queue_struct
*pairs
,
2668 struct hashmap
*dir_renames
,
2669 struct hashmap
*dir_rename_exclusions
,
2671 struct tree
*o_tree
,
2672 struct tree
*a_tree
,
2673 struct tree
*b_tree
,
2674 struct string_list
*entries
,
2678 struct hashmap collisions
;
2679 struct hashmap_iter iter
;
2680 struct collision_entry
*e
;
2681 struct string_list
*renames
;
2683 compute_collisions(&collisions
, dir_renames
, pairs
);
2684 CALLOC_ARRAY(renames
, 1);
2686 for (i
= 0; i
< pairs
->nr
; ++i
) {
2687 struct string_list_item
*item
;
2689 struct diff_filepair
*pair
= pairs
->queue
[i
];
2690 char *new_path
; /* non-NULL only with directory renames */
2692 if (pair
->status
!= 'A' && pair
->status
!= 'R') {
2693 diff_free_filepair(pair
);
2696 new_path
= check_for_directory_rename(opt
, pair
->two
->path
, tree
,
2698 dir_rename_exclusions
,
2701 if (pair
->status
!= 'R' && !new_path
) {
2702 diff_free_filepair(pair
);
2706 re
= xmalloc(sizeof(*re
));
2709 re
->branch
= branch
;
2710 re
->dir_rename_original_type
= '\0';
2711 re
->dir_rename_original_dest
= NULL
;
2712 item
= string_list_lookup(entries
, re
->pair
->one
->path
);
2714 re
->src_entry
= insert_stage_data(opt
->repo
,
2715 re
->pair
->one
->path
,
2716 o_tree
, a_tree
, b_tree
, entries
);
2718 re
->src_entry
= item
->util
;
2720 item
= string_list_lookup(entries
, re
->pair
->two
->path
);
2722 re
->dst_entry
= insert_stage_data(opt
->repo
,
2723 re
->pair
->two
->path
,
2724 o_tree
, a_tree
, b_tree
, entries
);
2726 re
->dst_entry
= item
->util
;
2727 item
= string_list_insert(renames
, pair
->one
->path
);
2730 apply_directory_rename_modifications(opt
, pair
, new_path
,
2736 hashmap_for_each_entry(&collisions
, &iter
, e
,
2737 ent
/* member name */) {
2738 free(e
->target_file
);
2739 string_list_clear(&e
->source_files
, 0);
2741 hashmap_clear_and_free(&collisions
, struct collision_entry
, ent
);
2745 static int process_renames(struct merge_options
*opt
,
2746 struct string_list
*a_renames
,
2747 struct string_list
*b_renames
)
2749 int clean_merge
= 1, i
, j
;
2750 struct string_list a_by_dst
= STRING_LIST_INIT_NODUP
;
2751 struct string_list b_by_dst
= STRING_LIST_INIT_NODUP
;
2752 const struct rename
*sre
;
2755 * FIXME: As string-list.h notes, it's O(n^2) to build a sorted
2756 * string_list one-by-one, but O(n log n) to build it unsorted and
2757 * then sort it. Note that as we build the list, we do not need to
2758 * check if the existing destination path is already in the list,
2759 * because the structure of diffcore_rename guarantees we won't
2762 for (i
= 0; i
< a_renames
->nr
; i
++) {
2763 sre
= a_renames
->items
[i
].util
;
2764 string_list_insert(&a_by_dst
, sre
->pair
->two
->path
)->util
2767 for (i
= 0; i
< b_renames
->nr
; i
++) {
2768 sre
= b_renames
->items
[i
].util
;
2769 string_list_insert(&b_by_dst
, sre
->pair
->two
->path
)->util
2773 for (i
= 0, j
= 0; i
< a_renames
->nr
|| j
< b_renames
->nr
;) {
2774 struct string_list
*renames1
, *renames2Dst
;
2775 struct rename
*ren1
= NULL
, *ren2
= NULL
;
2776 const char *ren1_src
, *ren1_dst
;
2777 struct string_list_item
*lookup
;
2779 if (i
>= a_renames
->nr
) {
2780 ren2
= b_renames
->items
[j
++].util
;
2781 } else if (j
>= b_renames
->nr
) {
2782 ren1
= a_renames
->items
[i
++].util
;
2784 int compare
= strcmp(a_renames
->items
[i
].string
,
2785 b_renames
->items
[j
].string
);
2787 ren1
= a_renames
->items
[i
++].util
;
2789 ren2
= b_renames
->items
[j
++].util
;
2792 /* TODO: refactor, so that 1/2 are not needed */
2794 renames1
= a_renames
;
2795 renames2Dst
= &b_by_dst
;
2797 renames1
= b_renames
;
2798 renames2Dst
= &a_by_dst
;
2802 if (ren1
->processed
)
2804 ren1
->processed
= 1;
2805 ren1
->dst_entry
->processed
= 1;
2806 /* BUG: We should only mark src_entry as processed if we
2807 * are not dealing with a rename + add-source case.
2809 ren1
->src_entry
->processed
= 1;
2811 ren1_src
= ren1
->pair
->one
->path
;
2812 ren1_dst
= ren1
->pair
->two
->path
;
2815 /* One file renamed on both sides */
2816 const char *ren2_src
= ren2
->pair
->one
->path
;
2817 const char *ren2_dst
= ren2
->pair
->two
->path
;
2818 enum rename_type rename_type
;
2819 if (strcmp(ren1_src
, ren2_src
) != 0)
2820 BUG("ren1_src != ren2_src");
2821 ren2
->dst_entry
->processed
= 1;
2822 ren2
->processed
= 1;
2823 if (strcmp(ren1_dst
, ren2_dst
) != 0) {
2824 rename_type
= RENAME_ONE_FILE_TO_TWO
;
2827 rename_type
= RENAME_ONE_FILE_TO_ONE
;
2828 /* BUG: We should only remove ren1_src in
2829 * the base stage (think of rename +
2830 * add-source cases).
2832 remove_file(opt
, 1, ren1_src
, 1);
2833 update_entry(ren1
->dst_entry
,
2838 setup_rename_conflict_info(rename_type
, opt
, ren1
, ren2
);
2839 } else if ((lookup
= string_list_lookup(renames2Dst
, ren1_dst
))) {
2840 /* Two different files renamed to the same thing */
2842 ren2
= lookup
->util
;
2843 ren2_dst
= ren2
->pair
->two
->path
;
2844 if (strcmp(ren1_dst
, ren2_dst
) != 0)
2845 BUG("ren1_dst != ren2_dst");
2848 ren2
->processed
= 1;
2850 * BUG: We should only mark src_entry as processed
2851 * if we are not dealing with a rename + add-source
2854 ren2
->src_entry
->processed
= 1;
2856 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE
,
2859 /* Renamed in 1, maybe changed in 2 */
2860 /* we only use sha1 and mode of these */
2861 struct diff_filespec src_other
, dst_other
;
2865 * unpack_trees loads entries from common-commit
2866 * into stage 1, from head-commit into stage 2, and
2867 * from merge-commit into stage 3. We keep track
2868 * of which side corresponds to the rename.
2870 int renamed_stage
= a_renames
== renames1
? 2 : 3;
2871 int other_stage
= a_renames
== renames1
? 3 : 2;
2874 * Directory renames have a funny corner case...
2876 int renamed_to_self
= !strcmp(ren1_src
, ren1_dst
);
2878 /* BUG: We should only remove ren1_src in the base
2879 * stage and in other_stage (think of rename +
2882 if (!renamed_to_self
)
2883 remove_file(opt
, 1, ren1_src
,
2884 renamed_stage
== 2 ||
2885 !was_tracked(opt
, ren1_src
));
2887 oidcpy(&src_other
.oid
,
2888 &ren1
->src_entry
->stages
[other_stage
].oid
);
2889 src_other
.mode
= ren1
->src_entry
->stages
[other_stage
].mode
;
2890 oidcpy(&dst_other
.oid
,
2891 &ren1
->dst_entry
->stages
[other_stage
].oid
);
2892 dst_other
.mode
= ren1
->dst_entry
->stages
[other_stage
].mode
;
2895 if (oideq(&src_other
.oid
, null_oid()) &&
2896 ren1
->dir_rename_original_type
== 'A') {
2897 setup_rename_conflict_info(RENAME_VIA_DIR
,
2899 } else if (renamed_to_self
) {
2900 setup_rename_conflict_info(RENAME_NORMAL
,
2902 } else if (oideq(&src_other
.oid
, null_oid())) {
2903 setup_rename_conflict_info(RENAME_DELETE
,
2905 } else if ((dst_other
.mode
== ren1
->pair
->two
->mode
) &&
2906 oideq(&dst_other
.oid
, &ren1
->pair
->two
->oid
)) {
2908 * Added file on the other side identical to
2909 * the file being renamed: clean merge.
2910 * Also, there is no need to overwrite the
2911 * file already in the working copy, so call
2912 * update_file_flags() instead of
2915 if (update_file_flags(opt
,
2918 1, /* update_cache */
2921 } else if (!oideq(&dst_other
.oid
, null_oid())) {
2923 * Probably not a clean merge, but it's
2924 * premature to set clean_merge to 0 here,
2925 * because if the rename merges cleanly and
2926 * the merge exactly matches the newly added
2927 * file, then the merge will be clean.
2929 setup_rename_conflict_info(RENAME_ADD
,
2934 if (clean_merge
< 0)
2935 goto cleanup_and_return
;
2937 struct diff_filespec
*o
, *a
, *b
;
2938 src_other
.path
= (char *)ren1_src
;
2940 o
= ren1
->pair
->one
;
2941 if (a_renames
== renames1
) {
2942 a
= ren1
->pair
->two
;
2945 b
= ren1
->pair
->two
;
2948 update_entry(ren1
->dst_entry
, o
, a
, b
);
2949 setup_rename_conflict_info(RENAME_NORMAL
,
2955 string_list_clear(&a_by_dst
, 0);
2956 string_list_clear(&b_by_dst
, 0);
2961 struct rename_info
{
2962 struct string_list
*head_renames
;
2963 struct string_list
*merge_renames
;
2966 static void initial_cleanup_rename(struct diff_queue_struct
*pairs
,
2967 struct hashmap
*dir_renames
)
2969 struct hashmap_iter iter
;
2970 struct dir_rename_entry
*e
;
2972 hashmap_for_each_entry(dir_renames
, &iter
, e
,
2973 ent
/* member name */) {
2975 strbuf_release(&e
->new_dir
);
2976 /* possible_new_dirs already cleared in get_directory_renames */
2978 hashmap_clear_and_free(dir_renames
, struct dir_rename_entry
, ent
);
2985 static int detect_and_process_renames(struct merge_options
*opt
,
2986 struct tree
*common
,
2989 struct string_list
*entries
,
2990 struct rename_info
*ri
)
2992 struct diff_queue_struct
*head_pairs
, *merge_pairs
;
2993 struct hashmap
*dir_re_head
, *dir_re_merge
;
2996 ri
->head_renames
= NULL
;
2997 ri
->merge_renames
= NULL
;
2999 if (!merge_detect_rename(opt
))
3002 head_pairs
= get_diffpairs(opt
, common
, head
);
3003 merge_pairs
= get_diffpairs(opt
, common
, merge
);
3005 if ((opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_TRUE
) ||
3006 (opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_CONFLICT
&&
3007 !opt
->priv
->call_depth
)) {
3008 dir_re_head
= get_directory_renames(head_pairs
);
3009 dir_re_merge
= get_directory_renames(merge_pairs
);
3011 handle_directory_level_conflicts(opt
,
3013 dir_re_merge
, merge
);
3015 dir_re_head
= xmalloc(sizeof(*dir_re_head
));
3016 dir_re_merge
= xmalloc(sizeof(*dir_re_merge
));
3017 dir_rename_init(dir_re_head
);
3018 dir_rename_init(dir_re_merge
);
3021 ri
->head_renames
= get_renames(opt
, opt
->branch1
, head_pairs
,
3022 dir_re_merge
, dir_re_head
, head
,
3023 common
, head
, merge
, entries
,
3027 ri
->merge_renames
= get_renames(opt
, opt
->branch2
, merge_pairs
,
3028 dir_re_head
, dir_re_merge
, merge
,
3029 common
, head
, merge
, entries
,
3033 clean
&= process_renames(opt
, ri
->head_renames
, ri
->merge_renames
);
3037 * Some cleanup is deferred until cleanup_renames() because the
3038 * data structures are still needed and referenced in
3039 * process_entry(). But there are a few things we can free now.
3041 initial_cleanup_rename(head_pairs
, dir_re_head
);
3042 initial_cleanup_rename(merge_pairs
, dir_re_merge
);
3047 static void final_cleanup_rename(struct string_list
*rename
)
3049 const struct rename
*re
;
3055 for (i
= 0; i
< rename
->nr
; i
++) {
3056 re
= rename
->items
[i
].util
;
3057 diff_free_filepair(re
->pair
);
3059 string_list_clear(rename
, 1);
3063 static void final_cleanup_renames(struct rename_info
*re_info
)
3065 final_cleanup_rename(re_info
->head_renames
);
3066 final_cleanup_rename(re_info
->merge_renames
);
3069 static int read_oid_strbuf(struct merge_options
*opt
,
3070 const struct object_id
*oid
,
3074 enum object_type type
;
3076 buf
= repo_read_object_file(the_repository
, oid
, &type
, &size
);
3078 return err(opt
, _("cannot read object %s"), oid_to_hex(oid
));
3079 if (type
!= OBJ_BLOB
) {
3081 return err(opt
, _("object %s is not a blob"), oid_to_hex(oid
));
3083 strbuf_attach(dst
, buf
, size
, size
+ 1);
3087 static int blob_unchanged(struct merge_options
*opt
,
3088 const struct diff_filespec
*o
,
3089 const struct diff_filespec
*a
,
3090 int renormalize
, const char *path
)
3092 struct strbuf obuf
= STRBUF_INIT
;
3093 struct strbuf abuf
= STRBUF_INIT
;
3094 int ret
= 0; /* assume changed for safety */
3095 struct index_state
*idx
= opt
->repo
->index
;
3097 if (a
->mode
!= o
->mode
)
3099 if (oideq(&o
->oid
, &a
->oid
))
3104 if (read_oid_strbuf(opt
, &o
->oid
, &obuf
) ||
3105 read_oid_strbuf(opt
, &a
->oid
, &abuf
))
3108 * Note: binary | is used so that both renormalizations are
3109 * performed. Comparison can be skipped if both files are
3110 * unchanged since their sha1s have already been compared.
3112 if (renormalize_buffer(idx
, path
, obuf
.buf
, obuf
.len
, &obuf
) |
3113 renormalize_buffer(idx
, path
, abuf
.buf
, abuf
.len
, &abuf
))
3114 ret
= (obuf
.len
== abuf
.len
&& !memcmp(obuf
.buf
, abuf
.buf
, obuf
.len
));
3117 strbuf_release(&obuf
);
3118 strbuf_release(&abuf
);
3122 static int handle_modify_delete(struct merge_options
*opt
,
3124 const struct diff_filespec
*o
,
3125 const struct diff_filespec
*a
,
3126 const struct diff_filespec
*b
)
3128 const char *modify_branch
, *delete_branch
;
3129 const struct diff_filespec
*changed
;
3132 modify_branch
= opt
->branch1
;
3133 delete_branch
= opt
->branch2
;
3136 modify_branch
= opt
->branch2
;
3137 delete_branch
= opt
->branch1
;
3141 return handle_change_delete(opt
,
3144 modify_branch
, delete_branch
,
3145 _("modify"), _("modified"));
3148 static int handle_content_merge(struct merge_file_info
*mfi
,
3149 struct merge_options
*opt
,
3152 const struct diff_filespec
*o
,
3153 const struct diff_filespec
*a
,
3154 const struct diff_filespec
*b
,
3155 struct rename_conflict_info
*ci
)
3157 const char *reason
= _("content");
3158 unsigned df_conflict_remains
= 0;
3161 reason
= _("add/add");
3163 assert(o
->path
&& a
->path
&& b
->path
);
3164 if (ci
&& dir_in_way(opt
->repo
->index
, path
, !opt
->priv
->call_depth
,
3165 S_ISGITLINK(ci
->ren1
->pair
->two
->mode
)))
3166 df_conflict_remains
= 1;
3168 if (merge_mode_and_contents(opt
, o
, a
, b
, path
,
3169 opt
->branch1
, opt
->branch2
,
3170 opt
->priv
->call_depth
* 2, mfi
))
3174 * We can skip updating the working tree file iff:
3175 * a) The merge is clean
3176 * b) The merge matches what was in HEAD (content, mode, pathname)
3177 * c) The target path is usable (i.e. not involved in D/F conflict)
3179 if (mfi
->clean
&& was_tracked_and_matches(opt
, path
, &mfi
->blob
) &&
3180 !df_conflict_remains
) {
3182 struct cache_entry
*ce
;
3184 output(opt
, 3, _("Skipped %s (merged same as existing)"), path
);
3185 if (add_cacheinfo(opt
, &mfi
->blob
, path
,
3186 0, (!opt
->priv
->call_depth
&& !is_dirty
), 0))
3189 * However, add_cacheinfo() will delete the old cache entry
3190 * and add a new one. We need to copy over any skip_worktree
3191 * flag to avoid making the file appear as if it were
3192 * deleted by the user.
3194 pos
= index_name_pos(&opt
->priv
->orig_index
, path
, strlen(path
));
3195 ce
= opt
->priv
->orig_index
.cache
[pos
];
3196 if (ce_skip_worktree(ce
)) {
3197 pos
= index_name_pos(opt
->repo
->index
, path
, strlen(path
));
3198 ce
= opt
->repo
->index
->cache
[pos
];
3199 ce
->ce_flags
|= CE_SKIP_WORKTREE
;
3205 if (S_ISGITLINK(mfi
->blob
.mode
))
3206 reason
= _("submodule");
3207 output(opt
, 1, _("CONFLICT (%s): Merge conflict in %s"),
3209 if (ci
&& !df_conflict_remains
)
3210 if (update_stages(opt
, path
, o
, a
, b
))
3214 if (df_conflict_remains
|| is_dirty
) {
3216 if (opt
->priv
->call_depth
) {
3217 remove_file_from_index(opt
->repo
->index
, path
);
3220 if (update_stages(opt
, path
, o
, a
, b
))
3223 int file_from_stage2
= was_tracked(opt
, path
);
3225 if (update_stages(opt
, path
, NULL
,
3226 file_from_stage2
? &mfi
->blob
: NULL
,
3227 file_from_stage2
? NULL
: &mfi
->blob
))
3232 new_path
= unique_path(opt
, path
, ci
->ren1
->branch
);
3234 output(opt
, 1, _("Refusing to lose dirty file at %s"),
3237 output(opt
, 1, _("Adding as %s instead"), new_path
);
3238 if (update_file(opt
, 0, &mfi
->blob
, new_path
)) {
3244 } else if (update_file(opt
, mfi
->clean
, &mfi
->blob
, path
))
3246 return !is_dirty
&& mfi
->clean
;
3249 static int handle_rename_normal(struct merge_options
*opt
,
3251 const struct diff_filespec
*o
,
3252 const struct diff_filespec
*a
,
3253 const struct diff_filespec
*b
,
3254 struct rename_conflict_info
*ci
)
3256 struct rename
*ren
= ci
->ren1
;
3257 struct merge_file_info mfi
;
3260 /* Merge the content and write it out */
3261 clean
= handle_content_merge(&mfi
, opt
, path
, was_dirty(opt
, path
),
3265 opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_CONFLICT
&&
3266 ren
->dir_rename_original_dest
) {
3267 if (update_stages(opt
, path
,
3268 &mfi
.blob
, &mfi
.blob
, &mfi
.blob
))
3270 clean
= 0; /* not clean, but conflicted */
3275 static void dir_rename_warning(const char *msg
,
3278 struct merge_options
*opt
,
3281 const char *other_branch
;
3282 other_branch
= (ren
->branch
== opt
->branch1
?
3283 opt
->branch2
: opt
->branch1
);
3285 output(opt
, clean
? 2 : 1, msg
,
3286 ren
->pair
->one
->path
, ren
->branch
,
3287 other_branch
, ren
->pair
->two
->path
);
3290 output(opt
, clean
? 2 : 1, msg
,
3291 ren
->pair
->one
->path
, ren
->dir_rename_original_dest
, ren
->branch
,
3292 other_branch
, ren
->pair
->two
->path
);
3294 static int warn_about_dir_renamed_entries(struct merge_options
*opt
,
3298 int clean
= 1, is_add
;
3303 /* Return early if ren was not affected/created by a directory rename */
3304 if (!ren
->dir_rename_original_dest
)
3308 assert(opt
->detect_directory_renames
> MERGE_DIRECTORY_RENAMES_NONE
);
3309 assert(ren
->dir_rename_original_type
== 'A' ||
3310 ren
->dir_rename_original_type
== 'R');
3312 /* Check whether to treat directory renames as a conflict */
3313 clean
= (opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_TRUE
);
3315 is_add
= (ren
->dir_rename_original_type
== 'A');
3316 if (ren
->dir_rename_original_type
== 'A' && clean
) {
3317 msg
= _("Path updated: %s added in %s inside a "
3318 "directory that was renamed in %s; moving it to %s.");
3319 } else if (ren
->dir_rename_original_type
== 'A' && !clean
) {
3320 msg
= _("CONFLICT (file location): %s added in %s "
3321 "inside a directory that was renamed in %s, "
3322 "suggesting it should perhaps be moved to %s.");
3323 } else if (ren
->dir_rename_original_type
== 'R' && clean
) {
3324 msg
= _("Path updated: %s renamed to %s in %s, inside a "
3325 "directory that was renamed in %s; moving it to %s.");
3326 } else if (ren
->dir_rename_original_type
== 'R' && !clean
) {
3327 msg
= _("CONFLICT (file location): %s renamed to %s in %s, "
3328 "inside a directory that was renamed in %s, "
3329 "suggesting it should perhaps be moved to %s.");
3331 BUG("Impossible dir_rename_original_type/clean combination");
3333 dir_rename_warning(msg
, is_add
, clean
, opt
, ren
);
3338 /* Per entry merge function */
3339 static int process_entry(struct merge_options
*opt
,
3340 const char *path
, struct stage_data
*entry
)
3342 int clean_merge
= 1;
3343 int normalize
= opt
->renormalize
;
3345 struct diff_filespec
*o
= &entry
->stages
[1];
3346 struct diff_filespec
*a
= &entry
->stages
[2];
3347 struct diff_filespec
*b
= &entry
->stages
[3];
3348 int o_valid
= is_valid(o
);
3349 int a_valid
= is_valid(a
);
3350 int b_valid
= is_valid(b
);
3351 o
->path
= a
->path
= b
->path
= (char*)path
;
3353 entry
->processed
= 1;
3354 if (entry
->rename_conflict_info
) {
3355 struct rename_conflict_info
*ci
= entry
->rename_conflict_info
;
3356 struct diff_filespec
*temp
;
3359 path_clean
= warn_about_dir_renamed_entries(opt
, ci
->ren1
);
3360 path_clean
&= warn_about_dir_renamed_entries(opt
, ci
->ren2
);
3363 * For cases with a single rename, {o,a,b}->path have all been
3364 * set to the rename target path; we need to set two of these
3365 * back to the rename source.
3366 * For rename/rename conflicts, we'll manually fix paths below.
3368 temp
= (opt
->branch1
== ci
->ren1
->branch
) ? b
: a
;
3369 o
->path
= temp
->path
= ci
->ren1
->pair
->one
->path
;
3371 assert(opt
->branch1
== ci
->ren1
->branch
);
3374 switch (ci
->rename_type
) {
3376 case RENAME_ONE_FILE_TO_ONE
:
3377 clean_merge
= handle_rename_normal(opt
, path
, o
, a
, b
,
3380 case RENAME_VIA_DIR
:
3381 clean_merge
= handle_rename_via_dir(opt
, ci
);
3385 * Probably unclean merge, but if the renamed file
3386 * merges cleanly and the result can then be
3387 * two-way merged cleanly with the added file, I
3388 * guess it's a clean merge?
3390 clean_merge
= handle_rename_add(opt
, ci
);
3394 if (handle_rename_delete(opt
, ci
))
3397 case RENAME_ONE_FILE_TO_TWO
:
3399 * Manually fix up paths; note:
3400 * ren[12]->pair->one->path are equal.
3402 o
->path
= ci
->ren1
->pair
->one
->path
;
3403 a
->path
= ci
->ren1
->pair
->two
->path
;
3404 b
->path
= ci
->ren2
->pair
->two
->path
;
3407 if (handle_rename_rename_1to2(opt
, ci
))
3410 case RENAME_TWO_FILES_TO_ONE
:
3412 * Manually fix up paths; note,
3413 * ren[12]->pair->two->path are actually equal.
3416 a
->path
= ci
->ren1
->pair
->two
->path
;
3417 b
->path
= ci
->ren2
->pair
->two
->path
;
3420 * Probably unclean merge, but if the two renamed
3421 * files merge cleanly and the two resulting files
3422 * can then be two-way merged cleanly, I guess it's
3425 clean_merge
= handle_rename_rename_2to1(opt
, ci
);
3428 entry
->processed
= 0;
3431 if (path_clean
< clean_merge
)
3432 clean_merge
= path_clean
;
3433 } else if (o_valid
&& (!a_valid
|| !b_valid
)) {
3434 /* Case A: Deleted in one */
3435 if ((!a_valid
&& !b_valid
) ||
3436 (!b_valid
&& blob_unchanged(opt
, o
, a
, normalize
, path
)) ||
3437 (!a_valid
&& blob_unchanged(opt
, o
, b
, normalize
, path
))) {
3438 /* Deleted in both or deleted in one and
3439 * unchanged in the other */
3441 output(opt
, 2, _("Removing %s"), path
);
3442 /* do not touch working file if it did not exist */
3443 remove_file(opt
, 1, path
, !a_valid
);
3445 /* Modify/delete; deleted side may have put a directory in the way */
3447 if (handle_modify_delete(opt
, path
, o
, a
, b
))
3450 } else if ((!o_valid
&& a_valid
&& !b_valid
) ||
3451 (!o_valid
&& !a_valid
&& b_valid
)) {
3452 /* Case B: Added in one. */
3453 /* [nothing|directory] -> ([nothing|directory], file) */
3455 const char *add_branch
;
3456 const char *other_branch
;
3458 const struct diff_filespec
*contents
;
3461 add_branch
= opt
->branch1
;
3462 other_branch
= opt
->branch2
;
3464 conf
= _("file/directory");
3466 add_branch
= opt
->branch2
;
3467 other_branch
= opt
->branch1
;
3469 conf
= _("directory/file");
3471 if (dir_in_way(opt
->repo
->index
, path
,
3472 !opt
->priv
->call_depth
&& !S_ISGITLINK(a
->mode
),
3474 char *new_path
= unique_path(opt
, path
, add_branch
);
3476 output(opt
, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
3478 conf
, path
, other_branch
, path
, new_path
);
3479 if (update_file(opt
, 0, contents
, new_path
))
3481 else if (opt
->priv
->call_depth
)
3482 remove_file_from_index(opt
->repo
->index
, path
);
3485 output(opt
, 2, _("Adding %s"), path
);
3486 /* do not overwrite file if already present */
3487 if (update_file_flags(opt
, contents
, path
, 1, !a_valid
))
3490 } else if (a_valid
&& b_valid
) {
3492 /* Case C: Added in both (check for same permissions) */
3494 _("CONFLICT (add/add): Merge conflict in %s"),
3496 clean_merge
= handle_file_collision(opt
,
3502 /* case D: Modified in both, but differently. */
3503 struct merge_file_info mfi
;
3504 int is_dirty
= 0; /* unpack_trees would have bailed if dirty */
3505 clean_merge
= handle_content_merge(&mfi
, opt
, path
,
3509 } else if (!o_valid
&& !a_valid
&& !b_valid
) {
3511 * this entry was deleted altogether. a_mode == 0 means
3512 * we had that path and want to actively remove it.
3514 remove_file(opt
, 1, path
, !a
->mode
);
3516 BUG("fatal merge failure, shouldn't happen.");
3521 static int merge_trees_internal(struct merge_options
*opt
,
3524 struct tree
*merge_base
,
3525 struct tree
**result
)
3527 struct index_state
*istate
= opt
->repo
->index
;
3530 if (opt
->subtree_shift
) {
3531 merge
= shift_tree_object(opt
->repo
, head
, merge
,
3532 opt
->subtree_shift
);
3533 merge_base
= shift_tree_object(opt
->repo
, head
, merge_base
,
3534 opt
->subtree_shift
);
3537 if (oideq(&merge_base
->object
.oid
, &merge
->object
.oid
)) {
3538 output(opt
, 0, _("Already up to date."));
3543 code
= unpack_trees_start(opt
, merge_base
, head
, merge
);
3546 if (show(opt
, 4) || opt
->priv
->call_depth
)
3547 err(opt
, _("merging of trees %s and %s failed"),
3548 oid_to_hex(&head
->object
.oid
),
3549 oid_to_hex(&merge
->object
.oid
));
3550 unpack_trees_finish(opt
);
3554 if (unmerged_index(istate
)) {
3555 struct string_list
*entries
;
3556 struct rename_info re_info
;
3559 * Only need the hashmap while processing entries, so
3560 * initialize it here and free it when we are done running
3561 * through the entries. Keeping it in the merge_options as
3562 * opposed to decaring a local hashmap is for convenience
3563 * so that we don't have to pass it to around.
3565 hashmap_init(&opt
->priv
->current_file_dir_set
, path_hashmap_cmp
,
3567 get_files_dirs(opt
, head
);
3568 get_files_dirs(opt
, merge
);
3570 entries
= get_unmerged(opt
->repo
->index
);
3571 clean
= detect_and_process_renames(opt
, merge_base
, head
, merge
,
3573 record_df_conflict_files(opt
, entries
);
3576 for (i
= entries
->nr
-1; 0 <= i
; i
--) {
3577 const char *path
= entries
->items
[i
].string
;
3578 struct stage_data
*e
= entries
->items
[i
].util
;
3579 if (!e
->processed
) {
3580 int ret
= process_entry(opt
, path
, e
);
3589 for (i
= 0; i
< entries
->nr
; i
++) {
3590 struct stage_data
*e
= entries
->items
[i
].util
;
3592 BUG("unprocessed path??? %s",
3593 entries
->items
[i
].string
);
3597 final_cleanup_renames(&re_info
);
3599 string_list_clear(entries
, 1);
3602 hashmap_clear_and_free(&opt
->priv
->current_file_dir_set
,
3603 struct path_hashmap_entry
, e
);
3606 unpack_trees_finish(opt
);
3613 unpack_trees_finish(opt
);
3615 if (opt
->priv
->call_depth
&&
3616 !(*result
= write_in_core_index_as_tree(opt
->repo
)))
3623 * Merge the commits h1 and h2, returning a flag (int) indicating the
3624 * cleanness of the merge. Also, if opt->priv->call_depth, create a
3625 * virtual commit and write its location to *result.
3627 static int merge_recursive_internal(struct merge_options
*opt
,
3630 struct commit_list
*merge_bases
,
3631 struct commit
**result
)
3633 struct commit_list
*iter
;
3634 struct commit
*merged_merge_bases
;
3635 struct tree
*result_tree
;
3637 const char *ancestor_name
;
3638 struct strbuf merge_base_abbrev
= STRBUF_INIT
;
3641 output(opt
, 4, _("Merging:"));
3642 output_commit_title(opt
, h1
);
3643 output_commit_title(opt
, h2
);
3647 if (repo_get_merge_bases(the_repository
, h1
, h2
,
3650 merge_bases
= reverse_commit_list(merge_bases
);
3654 unsigned cnt
= commit_list_count(merge_bases
);
3656 output(opt
, 5, Q_("found %u common ancestor:",
3657 "found %u common ancestors:", cnt
), cnt
);
3658 for (iter
= merge_bases
; iter
; iter
= iter
->next
)
3659 output_commit_title(opt
, iter
->item
);
3662 merged_merge_bases
= pop_commit(&merge_bases
);
3663 if (!merged_merge_bases
) {
3664 /* if there is no common ancestor, use an empty tree */
3667 tree
= lookup_tree(opt
->repo
, opt
->repo
->hash_algo
->empty_tree
);
3668 merged_merge_bases
= make_virtual_commit(opt
->repo
, tree
,
3670 ancestor_name
= "empty tree";
3671 } else if (opt
->ancestor
&& !opt
->priv
->call_depth
) {
3672 ancestor_name
= opt
->ancestor
;
3673 } else if (merge_bases
) {
3674 ancestor_name
= "merged common ancestors";
3676 strbuf_add_unique_abbrev(&merge_base_abbrev
,
3677 &merged_merge_bases
->object
.oid
,
3679 ancestor_name
= merge_base_abbrev
.buf
;
3682 for (iter
= merge_bases
; iter
; iter
= iter
->next
) {
3683 const char *saved_b1
, *saved_b2
;
3684 opt
->priv
->call_depth
++;
3686 * When the merge fails, the result contains files
3687 * with conflict markers. The cleanness flag is
3688 * ignored (unless indicating an error), it was never
3689 * actually used, as result of merge_trees has always
3690 * overwritten it: the committed "conflicts" were
3693 discard_index(opt
->repo
->index
);
3694 saved_b1
= opt
->branch1
;
3695 saved_b2
= opt
->branch2
;
3696 opt
->branch1
= "Temporary merge branch 1";
3697 opt
->branch2
= "Temporary merge branch 2";
3698 if (merge_recursive_internal(opt
, merged_merge_bases
, iter
->item
,
3699 NULL
, &merged_merge_bases
) < 0)
3701 opt
->branch1
= saved_b1
;
3702 opt
->branch2
= saved_b2
;
3703 opt
->priv
->call_depth
--;
3705 if (!merged_merge_bases
)
3706 return err(opt
, _("merge returned no commit"));
3710 * FIXME: Since merge_recursive_internal() is only ever called by
3711 * places that ensure the index is loaded first
3712 * (e.g. builtin/merge.c, rebase/sequencer, etc.), in the common
3713 * case where the merge base was unique that means when we get here
3714 * we immediately discard the index and re-read it, which is a
3715 * complete waste of time. We should only be discarding and
3716 * re-reading if we were forced to recurse.
3718 discard_index(opt
->repo
->index
);
3719 if (!opt
->priv
->call_depth
)
3720 repo_read_index(opt
->repo
);
3722 opt
->ancestor
= ancestor_name
;
3723 clean
= merge_trees_internal(opt
,
3724 repo_get_commit_tree(opt
->repo
, h1
),
3725 repo_get_commit_tree(opt
->repo
, h2
),
3726 repo_get_commit_tree(opt
->repo
,
3727 merged_merge_bases
),
3729 strbuf_release(&merge_base_abbrev
);
3730 opt
->ancestor
= NULL
; /* avoid accidental re-use of opt->ancestor */
3736 if (opt
->priv
->call_depth
) {
3737 *result
= make_virtual_commit(opt
->repo
, result_tree
,
3739 commit_list_insert(h1
, &(*result
)->parents
);
3740 commit_list_insert(h2
, &(*result
)->parents
->next
);
3745 static int merge_start(struct merge_options
*opt
, struct tree
*head
)
3747 struct strbuf sb
= STRBUF_INIT
;
3749 /* Sanity checks on opt */
3752 assert(opt
->branch1
&& opt
->branch2
);
3754 assert(opt
->detect_renames
>= -1 &&
3755 opt
->detect_renames
<= DIFF_DETECT_COPY
);
3756 assert(opt
->detect_directory_renames
>= MERGE_DIRECTORY_RENAMES_NONE
&&
3757 opt
->detect_directory_renames
<= MERGE_DIRECTORY_RENAMES_TRUE
);
3758 assert(opt
->rename_limit
>= -1);
3759 assert(opt
->rename_score
>= 0 && opt
->rename_score
<= MAX_SCORE
);
3760 assert(opt
->show_rename_progress
>= 0 && opt
->show_rename_progress
<= 1);
3762 assert(opt
->xdl_opts
>= 0);
3763 assert(opt
->recursive_variant
>= MERGE_VARIANT_NORMAL
&&
3764 opt
->recursive_variant
<= MERGE_VARIANT_THEIRS
);
3766 assert(opt
->verbosity
>= 0 && opt
->verbosity
<= 5);
3767 assert(opt
->buffer_output
<= 2);
3768 assert(opt
->obuf
.len
== 0);
3770 assert(opt
->priv
== NULL
);
3772 /* Not supported; option specific to merge-ort */
3773 assert(!opt
->record_conflict_msgs_as_headers
);
3774 assert(!opt
->msg_header_prefix
);
3776 /* Sanity check on repo state; index must match head */
3777 if (repo_index_has_changes(opt
->repo
, head
, &sb
)) {
3778 err(opt
, _("Your local changes to the following files would be overwritten by merge:\n %s"),
3780 strbuf_release(&sb
);
3784 CALLOC_ARRAY(opt
->priv
, 1);
3785 string_list_init_dup(&opt
->priv
->df_conflict_file_set
);
3789 static void merge_finalize(struct merge_options
*opt
)
3792 if (!opt
->priv
->call_depth
&& opt
->buffer_output
< 2)
3793 strbuf_release(&opt
->obuf
);
3795 diff_warn_rename_limit("merge.renamelimit",
3796 opt
->priv
->needed_rename_limit
, 0);
3797 FREE_AND_NULL(opt
->priv
);
3800 int merge_trees(struct merge_options
*opt
,
3803 struct tree
*merge_base
)
3806 struct tree
*ignored
;
3808 assert(opt
->ancestor
!= NULL
);
3810 if (merge_start(opt
, head
))
3812 clean
= merge_trees_internal(opt
, head
, merge
, merge_base
, &ignored
);
3813 merge_finalize(opt
);
3818 int merge_recursive(struct merge_options
*opt
,
3821 struct commit_list
*merge_bases
,
3822 struct commit
**result
)
3826 assert(opt
->ancestor
== NULL
||
3827 !strcmp(opt
->ancestor
, "constructed merge base"));
3829 prepare_repo_settings(opt
->repo
);
3830 opt
->repo
->settings
.command_requires_full_index
= 1;
3832 if (merge_start(opt
, repo_get_commit_tree(opt
->repo
, h1
)))
3834 clean
= merge_recursive_internal(opt
, h1
, h2
, merge_bases
, result
);
3835 merge_finalize(opt
);
3840 static struct commit
*get_ref(struct repository
*repo
,
3841 const struct object_id
*oid
,
3844 struct object
*object
;
3846 object
= deref_tag(repo
, parse_object(repo
, oid
),
3847 name
, strlen(name
));
3850 if (object
->type
== OBJ_TREE
)
3851 return make_virtual_commit(repo
, (struct tree
*)object
, name
);
3852 if (object
->type
!= OBJ_COMMIT
)
3854 if (repo_parse_commit(repo
, (struct commit
*)object
))
3856 return (struct commit
*)object
;
3859 int merge_recursive_generic(struct merge_options
*opt
,
3860 const struct object_id
*head
,
3861 const struct object_id
*merge
,
3862 int num_merge_bases
,
3863 const struct object_id
**merge_bases
,
3864 struct commit
**result
)
3867 struct lock_file lock
= LOCK_INIT
;
3868 struct commit
*head_commit
= get_ref(opt
->repo
, head
, opt
->branch1
);
3869 struct commit
*next_commit
= get_ref(opt
->repo
, merge
, opt
->branch2
);
3870 struct commit_list
*ca
= NULL
;
3874 for (i
= 0; i
< num_merge_bases
; ++i
) {
3875 struct commit
*base
;
3876 if (!(base
= get_ref(opt
->repo
, merge_bases
[i
],
3877 oid_to_hex(merge_bases
[i
]))))
3878 return err(opt
, _("Could not parse object '%s'"),
3879 oid_to_hex(merge_bases
[i
]));
3880 commit_list_insert(base
, &ca
);
3882 if (num_merge_bases
== 1)
3883 opt
->ancestor
= "constructed merge base";
3886 repo_hold_locked_index(opt
->repo
, &lock
, LOCK_DIE_ON_ERROR
);
3887 clean
= merge_recursive(opt
, head_commit
, next_commit
, ca
,
3890 rollback_lock_file(&lock
);
3894 if (write_locked_index(opt
->repo
->index
, &lock
,
3895 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
3896 return err(opt
, _("Unable to write index."));
3898 return clean
? 0 : 1;
3901 static void merge_recursive_config(struct merge_options
*opt
)
3904 int renormalize
= 0;
3905 git_config_get_int("merge.verbosity", &opt
->verbosity
);
3906 git_config_get_int("diff.renamelimit", &opt
->rename_limit
);
3907 git_config_get_int("merge.renamelimit", &opt
->rename_limit
);
3908 git_config_get_bool("merge.renormalize", &renormalize
);
3909 opt
->renormalize
= renormalize
;
3910 if (!git_config_get_string("diff.renames", &value
)) {
3911 opt
->detect_renames
= git_config_rename("diff.renames", value
);
3914 if (!git_config_get_string("merge.renames", &value
)) {
3915 opt
->detect_renames
= git_config_rename("merge.renames", value
);
3918 if (!git_config_get_string("merge.directoryrenames", &value
)) {
3919 int boolval
= git_parse_maybe_bool(value
);
3921 opt
->detect_directory_renames
= boolval
?
3922 MERGE_DIRECTORY_RENAMES_TRUE
:
3923 MERGE_DIRECTORY_RENAMES_NONE
;
3924 } else if (!strcasecmp(value
, "conflict")) {
3925 opt
->detect_directory_renames
=
3926 MERGE_DIRECTORY_RENAMES_CONFLICT
;
3927 } /* avoid erroring on values from future versions of git */
3930 git_config(git_xmerge_config
, NULL
);
3933 void init_merge_options(struct merge_options
*opt
,
3934 struct repository
*repo
)
3936 const char *merge_verbosity
;
3937 memset(opt
, 0, sizeof(struct merge_options
));
3941 opt
->detect_renames
= -1;
3942 opt
->detect_directory_renames
= MERGE_DIRECTORY_RENAMES_CONFLICT
;
3943 opt
->rename_limit
= -1;
3946 opt
->buffer_output
= 1;
3947 strbuf_init(&opt
->obuf
, 0);
3949 opt
->renormalize
= 0;
3951 opt
->conflict_style
= -1;
3953 merge_recursive_config(opt
);
3954 merge_verbosity
= getenv("GIT_MERGE_VERBOSITY");
3955 if (merge_verbosity
)
3956 opt
->verbosity
= strtol(merge_verbosity
, NULL
, 10);
3957 if (opt
->verbosity
>= 5)
3958 opt
->buffer_output
= 0;
3962 * For now, members of merge_options do not need deep copying, but
3963 * it may change in the future, in which case we would need to update
3964 * this, and also make a matching change to clear_merge_options() to
3965 * release the resources held by a copied instance.
3967 void copy_merge_options(struct merge_options
*dst
, struct merge_options
*src
)
3972 void clear_merge_options(struct merge_options
*opt UNUSED
)
3974 ; /* no-op as our copy is shallow right now */
3977 int parse_merge_opt(struct merge_options
*opt
, const char *s
)
3983 if (!strcmp(s
, "ours"))
3984 opt
->recursive_variant
= MERGE_VARIANT_OURS
;
3985 else if (!strcmp(s
, "theirs"))
3986 opt
->recursive_variant
= MERGE_VARIANT_THEIRS
;
3987 else if (!strcmp(s
, "subtree"))
3988 opt
->subtree_shift
= "";
3989 else if (skip_prefix(s
, "subtree=", &arg
))
3990 opt
->subtree_shift
= arg
;
3991 else if (!strcmp(s
, "patience"))
3992 opt
->xdl_opts
= DIFF_WITH_ALG(opt
, PATIENCE_DIFF
);
3993 else if (!strcmp(s
, "histogram"))
3994 opt
->xdl_opts
= DIFF_WITH_ALG(opt
, HISTOGRAM_DIFF
);
3995 else if (skip_prefix(s
, "diff-algorithm=", &arg
)) {
3996 long value
= parse_algorithm_value(arg
);
3999 /* clear out previous settings */
4000 DIFF_XDL_CLR(opt
, NEED_MINIMAL
);
4001 opt
->xdl_opts
&= ~XDF_DIFF_ALGORITHM_MASK
;
4002 opt
->xdl_opts
|= value
;
4004 else if (!strcmp(s
, "ignore-space-change"))
4005 DIFF_XDL_SET(opt
, IGNORE_WHITESPACE_CHANGE
);
4006 else if (!strcmp(s
, "ignore-all-space"))
4007 DIFF_XDL_SET(opt
, IGNORE_WHITESPACE
);
4008 else if (!strcmp(s
, "ignore-space-at-eol"))
4009 DIFF_XDL_SET(opt
, IGNORE_WHITESPACE_AT_EOL
);
4010 else if (!strcmp(s
, "ignore-cr-at-eol"))
4011 DIFF_XDL_SET(opt
, IGNORE_CR_AT_EOL
);
4012 else if (!strcmp(s
, "renormalize"))
4013 opt
->renormalize
= 1;
4014 else if (!strcmp(s
, "no-renormalize"))
4015 opt
->renormalize
= 0;
4016 else if (!strcmp(s
, "no-renames"))
4017 opt
->detect_renames
= 0;
4018 else if (!strcmp(s
, "find-renames")) {
4019 opt
->detect_renames
= 1;
4020 opt
->rename_score
= 0;
4022 else if (skip_prefix(s
, "find-renames=", &arg
) ||
4023 skip_prefix(s
, "rename-threshold=", &arg
)) {
4024 if ((opt
->rename_score
= parse_rename_score(&arg
)) == -1 || *arg
!= 0)
4026 opt
->detect_renames
= 1;
4029 * Please update $__git_merge_strategy_options in
4030 * git-completion.bash when you add new options