2 * Recursive Merge algorithm stolen from git-merge-recursive.py by
4 * The thieves were Alex Riesen and Johannes Schindelin, in June/July 2006
7 #define USE_THE_REPOSITORY_VARIABLE
9 #include "git-compat-util.h"
10 #include "merge-recursive.h"
13 #include "cache-tree.h"
15 #include "commit-reach.h"
20 #include "environment.h"
25 #include "match-trees.h"
26 #include "name-hash.h"
27 #include "object-file.h"
28 #include "object-name.h"
29 #include "object-store-ll.h"
31 #include "repository.h"
33 #include "sparse-index.h"
34 #include "string-list.h"
37 #include "tree-walk.h"
38 #include "unpack-trees.h"
39 #include "xdiff-interface.h"
41 struct merge_options_internal
{
43 int needed_rename_limit
;
44 struct hashmap current_file_dir_set
;
45 struct string_list df_conflict_file_set
;
46 struct unpack_trees_options unpack_opts
;
47 struct index_state orig_index
;
50 struct path_hashmap_entry
{
51 struct hashmap_entry e
;
52 char path
[FLEX_ARRAY
];
55 static int path_hashmap_cmp(const void *cmp_data UNUSED
,
56 const struct hashmap_entry
*eptr
,
57 const struct hashmap_entry
*entry_or_key
,
60 const struct path_hashmap_entry
*a
, *b
;
61 const char *key
= keydata
;
63 a
= container_of(eptr
, const struct path_hashmap_entry
, e
);
64 b
= container_of(entry_or_key
, const struct path_hashmap_entry
, e
);
66 return fspathcmp(a
->path
, key
? key
: b
->path
);
70 * For dir_rename_entry, directory names are stored as a full path from the
71 * toplevel of the repository and do not include a trailing '/'. Also:
73 * dir: original name of directory being renamed
74 * non_unique_new_dir: if true, could not determine new_dir
75 * new_dir: final name of directory being renamed
76 * possible_new_dirs: temporary used to help determine new_dir; see comments
77 * in get_directory_renames() for details
79 struct dir_rename_entry
{
80 struct hashmap_entry ent
;
82 unsigned non_unique_new_dir
:1;
83 struct strbuf new_dir
;
84 struct string_list possible_new_dirs
;
87 static struct dir_rename_entry
*dir_rename_find_entry(struct hashmap
*hashmap
,
90 struct dir_rename_entry key
;
94 hashmap_entry_init(&key
.ent
, strhash(dir
));
96 return hashmap_get_entry(hashmap
, &key
, ent
, NULL
);
99 static int dir_rename_cmp(const void *cmp_data UNUSED
,
100 const struct hashmap_entry
*eptr
,
101 const struct hashmap_entry
*entry_or_key
,
102 const void *keydata UNUSED
)
104 const struct dir_rename_entry
*e1
, *e2
;
106 e1
= container_of(eptr
, const struct dir_rename_entry
, ent
);
107 e2
= container_of(entry_or_key
, const struct dir_rename_entry
, ent
);
109 return strcmp(e1
->dir
, e2
->dir
);
112 static void dir_rename_init(struct hashmap
*map
)
114 hashmap_init(map
, dir_rename_cmp
, NULL
, 0);
117 static void dir_rename_entry_init(struct dir_rename_entry
*entry
,
120 hashmap_entry_init(&entry
->ent
, strhash(directory
));
121 entry
->dir
= directory
;
122 entry
->non_unique_new_dir
= 0;
123 strbuf_init(&entry
->new_dir
, 0);
124 string_list_init_nodup(&entry
->possible_new_dirs
);
127 struct collision_entry
{
128 struct hashmap_entry ent
;
130 struct string_list source_files
;
131 unsigned reported_already
:1;
134 static struct collision_entry
*collision_find_entry(struct hashmap
*hashmap
,
137 struct collision_entry key
;
139 hashmap_entry_init(&key
.ent
, strhash(target_file
));
140 key
.target_file
= target_file
;
141 return hashmap_get_entry(hashmap
, &key
, ent
, NULL
);
144 static int collision_cmp(const void *cmp_data UNUSED
,
145 const struct hashmap_entry
*eptr
,
146 const struct hashmap_entry
*entry_or_key
,
147 const void *keydata UNUSED
)
149 const struct collision_entry
*e1
, *e2
;
151 e1
= container_of(eptr
, const struct collision_entry
, ent
);
152 e2
= container_of(entry_or_key
, const struct collision_entry
, ent
);
154 return strcmp(e1
->target_file
, e2
->target_file
);
157 static void collision_init(struct hashmap
*map
)
159 hashmap_init(map
, collision_cmp
, NULL
, 0);
162 static void flush_output(struct merge_options
*opt
)
164 if (opt
->buffer_output
< 2 && opt
->obuf
.len
) {
165 fputs(opt
->obuf
.buf
, stdout
);
166 strbuf_reset(&opt
->obuf
);
170 __attribute__((format (printf
, 2, 3)))
171 static int err(struct merge_options
*opt
, const char *err
, ...)
175 if (opt
->buffer_output
< 2)
178 strbuf_complete(&opt
->obuf
, '\n');
179 strbuf_addstr(&opt
->obuf
, "error: ");
181 va_start(params
, err
);
182 strbuf_vaddf(&opt
->obuf
, err
, params
);
184 if (opt
->buffer_output
> 1)
185 strbuf_addch(&opt
->obuf
, '\n');
187 error("%s", opt
->obuf
.buf
);
188 strbuf_reset(&opt
->obuf
);
194 static struct tree
*shift_tree_object(struct repository
*repo
,
195 struct tree
*one
, struct tree
*two
,
196 const char *subtree_shift
)
198 struct object_id shifted
;
200 if (!*subtree_shift
) {
201 shift_tree(repo
, &one
->object
.oid
, &two
->object
.oid
, &shifted
, 0);
203 shift_tree_by(repo
, &one
->object
.oid
, &two
->object
.oid
, &shifted
,
206 if (oideq(&two
->object
.oid
, &shifted
))
208 return lookup_tree(repo
, &shifted
);
211 static inline void set_commit_tree(struct commit
*c
, struct tree
*t
)
216 static struct commit
*make_virtual_commit(struct repository
*repo
,
220 struct commit
*commit
= alloc_commit_node(repo
);
222 set_merge_remote_desc(commit
, comment
, (struct object
*)commit
);
223 set_commit_tree(commit
, tree
);
224 commit
->object
.parsed
= 1;
233 RENAME_ONE_FILE_TO_ONE
,
234 RENAME_ONE_FILE_TO_TWO
,
235 RENAME_TWO_FILES_TO_ONE
239 * Since we want to write the index eventually, we cannot reuse the index
240 * for these (temporary) data.
243 struct diff_filespec stages
[4]; /* mostly for oid & mode; maybe path */
244 struct rename_conflict_info
*rename_conflict_info
;
245 unsigned processed
:1,
246 rename_conflict_info_owned
:1;
250 unsigned processed
:1;
251 struct diff_filepair
*pair
;
252 const char *branch
; /* branch that the rename occurred on */
254 * If directory rename detection affected this rename, what was its
255 * original type ('A' or 'R') and it's original destination before
256 * the directory rename (otherwise, '\0' and NULL for these two vars).
258 char dir_rename_original_type
;
259 char *dir_rename_original_dest
;
261 * Purpose of src_entry and dst_entry:
263 * If 'before' is renamed to 'after' then src_entry will contain
264 * the versions of 'before' from the merge_base, HEAD, and MERGE in
265 * stages 1, 2, and 3; dst_entry will contain the respective
266 * versions of 'after' in corresponding locations. Thus, we have a
267 * total of six modes and oids, though some will be null. (Stage 0
268 * is ignored; we're interested in handling conflicts.)
270 * Since we don't turn on break-rewrites by default, neither
271 * src_entry nor dst_entry can have all three of their stages have
272 * non-null oids, meaning at most four of the six will be non-null.
273 * Also, since this is a rename, both src_entry and dst_entry will
274 * have at least one non-null oid, meaning at least two will be
275 * non-null. Of the six oids, a typical rename will have three be
276 * non-null. Only two implies a rename/delete, and four implies a
279 struct stage_data
*src_entry
;
280 struct stage_data
*dst_entry
;
283 struct rename_conflict_info
{
284 enum rename_type rename_type
;
289 static inline void setup_rename_conflict_info(enum rename_type rename_type
,
290 struct merge_options
*opt
,
294 struct rename_conflict_info
*ci
;
297 * When we have two renames involved, it's easiest to get the
298 * correct things into stage 2 and 3, and to make sure that the
299 * content merge puts HEAD before the other branch if we just
300 * ensure that branch1 == opt->branch1. So, simply flip arguments
301 * around if we don't have that.
303 if (ren2
&& ren1
->branch
!= opt
->branch1
) {
304 setup_rename_conflict_info(rename_type
, opt
, ren2
, ren1
);
309 ci
->rename_type
= rename_type
;
313 ci
->ren1
->dst_entry
->processed
= 0;
314 ci
->ren1
->dst_entry
->rename_conflict_info
= ci
;
315 ci
->ren1
->dst_entry
->rename_conflict_info_owned
= 1;
317 ci
->ren2
->dst_entry
->rename_conflict_info
= ci
;
321 static int show(struct merge_options
*opt
, int v
)
323 return (!opt
->priv
->call_depth
&& opt
->verbosity
>= v
) ||
327 __attribute__((format (printf
, 3, 4)))
328 static void output(struct merge_options
*opt
, int v
, const char *fmt
, ...)
335 strbuf_addchars(&opt
->obuf
, ' ', opt
->priv
->call_depth
* 2);
338 strbuf_vaddf(&opt
->obuf
, fmt
, ap
);
341 strbuf_addch(&opt
->obuf
, '\n');
342 if (!opt
->buffer_output
)
346 static void repo_output_commit_title(struct merge_options
*opt
,
347 struct repository
*repo
,
348 struct commit
*commit
)
350 struct merge_remote_desc
*desc
;
352 strbuf_addchars(&opt
->obuf
, ' ', opt
->priv
->call_depth
* 2);
353 desc
= merge_remote_util(commit
);
355 strbuf_addf(&opt
->obuf
, "virtual %s\n", desc
->name
);
357 strbuf_repo_add_unique_abbrev(&opt
->obuf
, repo
,
360 strbuf_addch(&opt
->obuf
, ' ');
361 if (repo_parse_commit(repo
, commit
) != 0)
362 strbuf_addstr(&opt
->obuf
, _("(bad commit)\n"));
365 const char *msg
= repo_get_commit_buffer(repo
, commit
, NULL
);
366 int len
= find_commit_subject(msg
, &title
);
368 strbuf_addf(&opt
->obuf
, "%.*s\n", len
, title
);
369 repo_unuse_commit_buffer(repo
, commit
, msg
);
375 static void output_commit_title(struct merge_options
*opt
, struct commit
*commit
)
377 repo_output_commit_title(opt
, the_repository
, commit
);
380 static int add_cacheinfo(struct merge_options
*opt
,
381 const struct diff_filespec
*blob
,
382 const char *path
, int stage
, int refresh
, int options
)
384 struct index_state
*istate
= opt
->repo
->index
;
385 struct cache_entry
*ce
;
388 ce
= make_cache_entry(istate
, blob
->mode
, &blob
->oid
, path
, stage
, 0);
390 return err(opt
, _("add_cacheinfo failed for path '%s'; merge aborting."), path
);
392 ret
= add_index_entry(istate
, ce
, options
);
394 struct cache_entry
*nce
;
396 nce
= refresh_cache_entry(istate
, ce
,
397 CE_MATCH_REFRESH
| CE_MATCH_IGNORE_MISSING
);
399 return err(opt
, _("add_cacheinfo failed to refresh for path '%s'; merge aborting."), path
);
401 ret
= add_index_entry(istate
, nce
, options
);
406 static inline int merge_detect_rename(struct merge_options
*opt
)
408 return (opt
->detect_renames
>= 0) ? opt
->detect_renames
: 1;
411 static void init_tree_desc_from_tree(struct tree_desc
*desc
, struct tree
*tree
)
413 if (parse_tree(tree
) < 0)
415 init_tree_desc(desc
, &tree
->object
.oid
, tree
->buffer
, tree
->size
);
418 static int unpack_trees_start(struct merge_options
*opt
,
424 struct tree_desc t
[3];
425 struct index_state tmp_index
= INDEX_STATE_INIT(opt
->repo
);
427 memset(&opt
->priv
->unpack_opts
, 0, sizeof(opt
->priv
->unpack_opts
));
428 if (opt
->priv
->call_depth
)
429 opt
->priv
->unpack_opts
.index_only
= 1;
431 opt
->priv
->unpack_opts
.update
= 1;
432 /* FIXME: should only do this if !overwrite_ignore */
433 opt
->priv
->unpack_opts
.preserve_ignored
= 0;
435 opt
->priv
->unpack_opts
.merge
= 1;
436 opt
->priv
->unpack_opts
.head_idx
= 2;
437 opt
->priv
->unpack_opts
.fn
= threeway_merge
;
438 opt
->priv
->unpack_opts
.src_index
= opt
->repo
->index
;
439 opt
->priv
->unpack_opts
.dst_index
= &tmp_index
;
440 opt
->priv
->unpack_opts
.aggressive
= !merge_detect_rename(opt
);
441 setup_unpack_trees_porcelain(&opt
->priv
->unpack_opts
, "merge");
443 init_tree_desc_from_tree(t
+0, common
);
444 init_tree_desc_from_tree(t
+1, head
);
445 init_tree_desc_from_tree(t
+2, merge
);
447 rc
= unpack_trees(3, t
, &opt
->priv
->unpack_opts
);
448 cache_tree_free(&opt
->repo
->index
->cache_tree
);
451 * Update opt->repo->index to match the new results, AFTER saving a
452 * copy in opt->priv->orig_index. Update src_index to point to the
453 * saved copy. (verify_uptodate() checks src_index, and the original
454 * index is the one that had the necessary modification timestamps.)
456 opt
->priv
->orig_index
= *opt
->repo
->index
;
457 *opt
->repo
->index
= tmp_index
;
458 opt
->priv
->unpack_opts
.src_index
= &opt
->priv
->orig_index
;
463 static void unpack_trees_finish(struct merge_options
*opt
)
465 discard_index(&opt
->priv
->orig_index
);
466 clear_unpack_trees_porcelain(&opt
->priv
->unpack_opts
);
469 static int save_files_dirs(const struct object_id
*oid UNUSED
,
470 struct strbuf
*base
, const char *path
,
471 unsigned int mode
, void *context
)
473 struct path_hashmap_entry
*entry
;
474 int baselen
= base
->len
;
475 struct merge_options
*opt
= context
;
477 strbuf_addstr(base
, path
);
479 FLEX_ALLOC_MEM(entry
, path
, base
->buf
, base
->len
);
480 hashmap_entry_init(&entry
->e
, fspathhash(entry
->path
));
481 hashmap_add(&opt
->priv
->current_file_dir_set
, &entry
->e
);
483 strbuf_setlen(base
, baselen
);
484 return (S_ISDIR(mode
) ? READ_TREE_RECURSIVE
: 0);
487 static void get_files_dirs(struct merge_options
*opt
, struct tree
*tree
)
489 struct pathspec match_all
;
490 memset(&match_all
, 0, sizeof(match_all
));
491 read_tree(opt
->repo
, tree
,
492 &match_all
, save_files_dirs
, opt
);
495 static int get_tree_entry_if_blob(struct repository
*r
,
496 const struct object_id
*tree
,
498 struct diff_filespec
*dfs
)
502 ret
= get_tree_entry(r
, tree
, path
, &dfs
->oid
, &dfs
->mode
);
503 if (S_ISDIR(dfs
->mode
)) {
504 oidcpy(&dfs
->oid
, null_oid());
511 * Returns an index_entry instance which doesn't have to correspond to
512 * a real cache entry in Git's index.
514 static struct stage_data
*insert_stage_data(struct repository
*r
,
516 struct tree
*o
, struct tree
*a
, struct tree
*b
,
517 struct string_list
*entries
)
519 struct string_list_item
*item
;
520 struct stage_data
*e
= xcalloc(1, sizeof(struct stage_data
));
521 get_tree_entry_if_blob(r
, &o
->object
.oid
, path
, &e
->stages
[1]);
522 get_tree_entry_if_blob(r
, &a
->object
.oid
, path
, &e
->stages
[2]);
523 get_tree_entry_if_blob(r
, &b
->object
.oid
, path
, &e
->stages
[3]);
524 item
= string_list_insert(entries
, path
);
530 * Create a dictionary mapping file names to stage_data objects. The
531 * dictionary contains one entry for every path with a non-zero stage entry.
533 static struct string_list
*get_unmerged(struct index_state
*istate
)
535 struct string_list
*unmerged
= xmalloc(sizeof(struct string_list
));
538 string_list_init_dup(unmerged
);
540 /* TODO: audit for interaction with sparse-index. */
541 ensure_full_index(istate
);
542 for (i
= 0; i
< istate
->cache_nr
; i
++) {
543 struct string_list_item
*item
;
544 struct stage_data
*e
;
545 const struct cache_entry
*ce
= istate
->cache
[i
];
549 item
= string_list_lookup(unmerged
, ce
->name
);
551 item
= string_list_insert(unmerged
, ce
->name
);
552 item
->util
= xcalloc(1, sizeof(struct stage_data
));
555 e
->stages
[ce_stage(ce
)].mode
= ce
->ce_mode
;
556 oidcpy(&e
->stages
[ce_stage(ce
)].oid
, &ce
->oid
);
562 static int string_list_df_name_compare(const char *one
, const char *two
)
564 int onelen
= strlen(one
);
565 int twolen
= strlen(two
);
567 * Here we only care that entries for D/F conflicts are
568 * adjacent, in particular with the file of the D/F conflict
569 * appearing before files below the corresponding directory.
570 * The order of the rest of the list is irrelevant for us.
572 * To achieve this, we sort with df_name_compare and provide
573 * the mode S_IFDIR so that D/F conflicts will sort correctly.
574 * We use the mode S_IFDIR for everything else for simplicity,
575 * since in other cases any changes in their order due to
576 * sorting cause no problems for us.
578 int cmp
= df_name_compare(one
, onelen
, S_IFDIR
,
579 two
, twolen
, S_IFDIR
);
581 * Now that 'foo' and 'foo/bar' compare equal, we have to make sure
582 * that 'foo' comes before 'foo/bar'.
586 return onelen
- twolen
;
589 static void record_df_conflict_files(struct merge_options
*opt
,
590 struct string_list
*entries
)
592 /* If there is a D/F conflict and the file for such a conflict
593 * currently exists in the working tree, we want to allow it to be
594 * removed to make room for the corresponding directory if needed.
595 * The files underneath the directories of such D/F conflicts will
596 * be processed before the corresponding file involved in the D/F
597 * conflict. If the D/F directory ends up being removed by the
598 * merge, then we won't have to touch the D/F file. If the D/F
599 * directory needs to be written to the working copy, then the D/F
600 * file will simply be removed (in make_room_for_path()) to make
601 * room for the necessary paths. Note that if both the directory
602 * and the file need to be present, then the D/F file will be
603 * reinstated with a new unique name at the time it is processed.
605 struct string_list df_sorted_entries
= STRING_LIST_INIT_NODUP
;
606 const char *last_file
= NULL
;
611 * If we're merging merge-bases, we don't want to bother with
612 * any working directory changes.
614 if (opt
->priv
->call_depth
)
617 /* Ensure D/F conflicts are adjacent in the entries list. */
618 for (i
= 0; i
< entries
->nr
; i
++) {
619 struct string_list_item
*next
= &entries
->items
[i
];
620 string_list_append(&df_sorted_entries
, next
->string
)->util
=
623 df_sorted_entries
.cmp
= string_list_df_name_compare
;
624 string_list_sort(&df_sorted_entries
);
626 string_list_clear(&opt
->priv
->df_conflict_file_set
, 1);
627 for (i
= 0; i
< df_sorted_entries
.nr
; i
++) {
628 const char *path
= df_sorted_entries
.items
[i
].string
;
629 int len
= strlen(path
);
630 struct stage_data
*e
= df_sorted_entries
.items
[i
].util
;
633 * Check if last_file & path correspond to a D/F conflict;
634 * i.e. whether path is last_file+'/'+<something>.
635 * If so, record that it's okay to remove last_file to make
636 * room for path and friends if needed.
640 memcmp(path
, last_file
, last_len
) == 0 &&
641 path
[last_len
] == '/') {
642 string_list_insert(&opt
->priv
->df_conflict_file_set
, last_file
);
646 * Determine whether path could exist as a file in the
647 * working directory as a possible D/F conflict. This
648 * will only occur when it exists in stage 2 as a
651 if (S_ISREG(e
->stages
[2].mode
) || S_ISLNK(e
->stages
[2].mode
)) {
658 string_list_clear(&df_sorted_entries
, 0);
661 static int update_stages(struct merge_options
*opt
, const char *path
,
662 const struct diff_filespec
*o
,
663 const struct diff_filespec
*a
,
664 const struct diff_filespec
*b
)
668 * NOTE: It is usually a bad idea to call update_stages on a path
669 * before calling update_file on that same path, since it can
670 * sometimes lead to spurious "refusing to lose untracked file..."
671 * messages from update_file (via make_room_for path via
672 * would_lose_untracked). Instead, reverse the order of the calls
673 * (executing update_file first and then update_stages).
676 int options
= ADD_CACHE_OK_TO_ADD
| ADD_CACHE_SKIP_DFCHECK
;
678 if (remove_file_from_index(opt
->repo
->index
, path
))
681 if (add_cacheinfo(opt
, o
, path
, 1, 0, options
))
684 if (add_cacheinfo(opt
, a
, path
, 2, 0, options
))
687 if (add_cacheinfo(opt
, b
, path
, 3, 0, options
))
692 static void update_entry(struct stage_data
*entry
,
693 struct diff_filespec
*o
,
694 struct diff_filespec
*a
,
695 struct diff_filespec
*b
)
697 entry
->processed
= 0;
698 entry
->stages
[1].mode
= o
->mode
;
699 entry
->stages
[2].mode
= a
->mode
;
700 entry
->stages
[3].mode
= b
->mode
;
701 oidcpy(&entry
->stages
[1].oid
, &o
->oid
);
702 oidcpy(&entry
->stages
[2].oid
, &a
->oid
);
703 oidcpy(&entry
->stages
[3].oid
, &b
->oid
);
706 static int remove_file(struct merge_options
*opt
, int clean
,
707 const char *path
, int no_wd
)
709 int update_cache
= opt
->priv
->call_depth
|| clean
;
710 int update_working_directory
= !opt
->priv
->call_depth
&& !no_wd
;
713 if (remove_file_from_index(opt
->repo
->index
, path
))
716 if (update_working_directory
) {
718 struct cache_entry
*ce
;
719 ce
= index_file_exists(opt
->repo
->index
, path
, strlen(path
),
721 if (ce
&& ce_stage(ce
) == 0 && strcmp(path
, ce
->name
))
724 if (remove_path(path
))
730 /* add a string to a strbuf, but converting "/" to "_" */
731 static void add_flattened_path(struct strbuf
*out
, const char *s
)
734 strbuf_addstr(out
, s
);
735 for (; i
< out
->len
; i
++)
736 if (out
->buf
[i
] == '/')
740 static char *unique_path(struct merge_options
*opt
,
744 struct path_hashmap_entry
*entry
;
745 struct strbuf newpath
= STRBUF_INIT
;
749 strbuf_addf(&newpath
, "%s~", path
);
750 add_flattened_path(&newpath
, branch
);
752 base_len
= newpath
.len
;
753 while (hashmap_get_from_hash(&opt
->priv
->current_file_dir_set
,
754 fspathhash(newpath
.buf
), newpath
.buf
) ||
755 (!opt
->priv
->call_depth
&& file_exists(newpath
.buf
))) {
756 strbuf_setlen(&newpath
, base_len
);
757 strbuf_addf(&newpath
, "_%d", suffix
++);
760 FLEX_ALLOC_MEM(entry
, path
, newpath
.buf
, newpath
.len
);
761 hashmap_entry_init(&entry
->e
, fspathhash(entry
->path
));
762 hashmap_add(&opt
->priv
->current_file_dir_set
, &entry
->e
);
763 return strbuf_detach(&newpath
, NULL
);
767 * Check whether a directory in the index is in the way of an incoming
768 * file. Return 1 if so. If check_working_copy is non-zero, also
769 * check the working directory. If empty_ok is non-zero, also return
770 * 0 in the case where the working-tree dir exists but is empty.
772 static int dir_in_way(struct index_state
*istate
, const char *path
,
773 int check_working_copy
, int empty_ok
)
776 struct strbuf dirpath
= STRBUF_INIT
;
779 strbuf_addstr(&dirpath
, path
);
780 strbuf_addch(&dirpath
, '/');
782 pos
= index_name_pos(istate
, dirpath
.buf
, dirpath
.len
);
786 if (pos
< istate
->cache_nr
&&
787 !strncmp(dirpath
.buf
, istate
->cache
[pos
]->name
, dirpath
.len
)) {
788 strbuf_release(&dirpath
);
792 strbuf_release(&dirpath
);
793 return check_working_copy
&& !lstat(path
, &st
) && S_ISDIR(st
.st_mode
) &&
794 !(empty_ok
&& is_empty_dir(path
)) &&
795 !has_symlink_leading_path(path
, strlen(path
));
799 * Returns whether path was tracked in the index before the merge started,
800 * and its oid and mode match the specified values
802 static int was_tracked_and_matches(struct merge_options
*opt
, const char *path
,
803 const struct diff_filespec
*blob
)
805 int pos
= index_name_pos(&opt
->priv
->orig_index
, path
, strlen(path
));
806 struct cache_entry
*ce
;
809 /* we were not tracking this path before the merge */
812 /* See if the file we were tracking before matches */
813 ce
= opt
->priv
->orig_index
.cache
[pos
];
814 return (oideq(&ce
->oid
, &blob
->oid
) && ce
->ce_mode
== blob
->mode
);
818 * Returns whether path was tracked in the index before the merge started
820 static int was_tracked(struct merge_options
*opt
, const char *path
)
822 int pos
= index_name_pos(&opt
->priv
->orig_index
, path
, strlen(path
));
825 /* we were tracking this path before the merge */
831 static int would_lose_untracked(struct merge_options
*opt
, const char *path
)
833 struct index_state
*istate
= opt
->repo
->index
;
836 * This may look like it can be simplified to:
837 * return !was_tracked(opt, path) && file_exists(path)
838 * but it can't. This function needs to know whether path was in
839 * the working tree due to EITHER having been tracked in the index
840 * before the merge OR having been put into the working copy and
841 * index by unpack_trees(). Due to that either-or requirement, we
842 * check the current index instead of the original one.
844 * Note that we do not need to worry about merge-recursive itself
845 * updating the index after unpack_trees() and before calling this
846 * function, because we strictly require all code paths in
847 * merge-recursive to update the working tree first and the index
848 * second. Doing otherwise would break
849 * update_file()/would_lose_untracked(); see every comment in this
850 * file which mentions "update_stages".
852 int pos
= index_name_pos(istate
, path
, strlen(path
));
856 while (pos
< istate
->cache_nr
&&
857 !strcmp(path
, istate
->cache
[pos
]->name
)) {
859 * If stage #0, it is definitely tracked.
860 * If it has stage #2 then it was tracked
861 * before this merge started. All other
862 * cases the path was not tracked.
864 switch (ce_stage(istate
->cache
[pos
])) {
871 return file_exists(path
);
874 static int was_dirty(struct merge_options
*opt
, const char *path
)
876 struct cache_entry
*ce
;
879 if (opt
->priv
->call_depth
|| !was_tracked(opt
, path
))
882 ce
= index_file_exists(opt
->priv
->unpack_opts
.src_index
,
883 path
, strlen(path
), ignore_case
);
884 dirty
= verify_uptodate(ce
, &opt
->priv
->unpack_opts
) != 0;
888 static int make_room_for_path(struct merge_options
*opt
, const char *path
)
891 const char *msg
= _("failed to create path '%s'%s");
893 /* Unlink any D/F conflict files that are in the way */
894 for (i
= 0; i
< opt
->priv
->df_conflict_file_set
.nr
; i
++) {
895 const char *df_path
= opt
->priv
->df_conflict_file_set
.items
[i
].string
;
896 size_t pathlen
= strlen(path
);
897 size_t df_pathlen
= strlen(df_path
);
898 if (df_pathlen
< pathlen
&&
899 path
[df_pathlen
] == '/' &&
900 strncmp(path
, df_path
, df_pathlen
) == 0) {
902 _("Removing %s to make room for subdirectory\n"),
905 unsorted_string_list_delete_item(&opt
->priv
->df_conflict_file_set
,
911 /* Make sure leading directories are created */
912 status
= safe_create_leading_directories_const(path
);
914 if (status
== SCLD_EXISTS
)
915 /* something else exists */
916 return err(opt
, msg
, path
, _(": perhaps a D/F conflict?"));
917 return err(opt
, msg
, path
, "");
921 * Do not unlink a file in the work tree if we are not
924 if (would_lose_untracked(opt
, path
))
925 return err(opt
, _("refusing to lose untracked file at '%s'"),
928 /* Successful unlink is good.. */
931 /* .. and so is no existing file */
934 /* .. but not some other error (who really cares what?) */
935 return err(opt
, msg
, path
, _(": perhaps a D/F conflict?"));
938 static int update_file_flags(struct merge_options
*opt
,
939 const struct diff_filespec
*contents
,
946 if (opt
->priv
->call_depth
)
950 enum object_type type
;
954 if (S_ISGITLINK(contents
->mode
)) {
956 * We may later decide to recursively descend into
957 * the submodule directory and update its index
958 * and/or work tree, but we do not do that now.
964 buf
= repo_read_object_file(the_repository
, &contents
->oid
,
967 ret
= err(opt
, _("cannot read object %s '%s'"),
968 oid_to_hex(&contents
->oid
), path
);
971 if (type
!= OBJ_BLOB
) {
972 ret
= err(opt
, _("blob expected for %s '%s'"),
973 oid_to_hex(&contents
->oid
), path
);
976 if (S_ISREG(contents
->mode
)) {
977 struct strbuf strbuf
= STRBUF_INIT
;
978 if (convert_to_working_tree(opt
->repo
->index
,
979 path
, buf
, size
, &strbuf
, NULL
)) {
982 buf
= strbuf_detach(&strbuf
, NULL
);
986 if (make_room_for_path(opt
, path
) < 0) {
990 if (S_ISREG(contents
->mode
) ||
991 (!has_symlinks
&& S_ISLNK(contents
->mode
))) {
993 int mode
= (contents
->mode
& 0100 ? 0777 : 0666);
995 fd
= open(path
, O_WRONLY
| O_TRUNC
| O_CREAT
, mode
);
997 ret
= err(opt
, _("failed to open '%s': %s"),
998 path
, strerror(errno
));
1001 write_in_full(fd
, buf
, size
);
1003 } else if (S_ISLNK(contents
->mode
)) {
1004 char *lnk
= xmemdupz(buf
, size
);
1005 safe_create_leading_directories_const(path
);
1007 if (symlink(lnk
, path
))
1008 ret
= err(opt
, _("failed to symlink '%s': %s"),
1009 path
, strerror(errno
));
1013 _("do not know what to do with %06o %s '%s'"),
1014 contents
->mode
, oid_to_hex(&contents
->oid
), path
);
1019 if (!ret
&& update_cache
) {
1020 int refresh
= (!opt
->priv
->call_depth
&&
1021 contents
->mode
!= S_IFGITLINK
);
1022 if (add_cacheinfo(opt
, contents
, path
, 0, refresh
,
1023 ADD_CACHE_OK_TO_ADD
))
1029 static int update_file(struct merge_options
*opt
,
1031 const struct diff_filespec
*contents
,
1034 return update_file_flags(opt
, contents
, path
,
1035 opt
->priv
->call_depth
|| clean
, !opt
->priv
->call_depth
);
1038 /* Low level file merging, update and removal */
1040 struct merge_file_info
{
1041 struct diff_filespec blob
; /* mostly use oid & mode; sometimes path */
1046 static int merge_3way(struct merge_options
*opt
,
1047 mmbuffer_t
*result_buf
,
1048 const struct diff_filespec
*o
,
1049 const struct diff_filespec
*a
,
1050 const struct diff_filespec
*b
,
1051 const char *branch1
,
1052 const char *branch2
,
1053 const int extra_marker_size
)
1055 mmfile_t orig
, src1
, src2
;
1056 struct ll_merge_options ll_opts
= LL_MERGE_OPTIONS_INIT
;
1057 char *base
, *name1
, *name2
;
1058 enum ll_merge_result merge_status
;
1060 ll_opts
.renormalize
= opt
->renormalize
;
1061 ll_opts
.extra_marker_size
= extra_marker_size
;
1062 ll_opts
.xdl_opts
= opt
->xdl_opts
;
1063 ll_opts
.conflict_style
= opt
->conflict_style
;
1065 if (opt
->priv
->call_depth
) {
1066 ll_opts
.virtual_ancestor
= 1;
1067 ll_opts
.variant
= 0;
1069 switch (opt
->recursive_variant
) {
1070 case MERGE_VARIANT_OURS
:
1071 ll_opts
.variant
= XDL_MERGE_FAVOR_OURS
;
1073 case MERGE_VARIANT_THEIRS
:
1074 ll_opts
.variant
= XDL_MERGE_FAVOR_THEIRS
;
1077 ll_opts
.variant
= 0;
1082 assert(a
->path
&& b
->path
&& o
->path
&& opt
->ancestor
);
1083 if (strcmp(a
->path
, b
->path
) || strcmp(a
->path
, o
->path
) != 0) {
1084 base
= mkpathdup("%s:%s", opt
->ancestor
, o
->path
);
1085 name1
= mkpathdup("%s:%s", branch1
, a
->path
);
1086 name2
= mkpathdup("%s:%s", branch2
, b
->path
);
1088 base
= mkpathdup("%s", opt
->ancestor
);
1089 name1
= mkpathdup("%s", branch1
);
1090 name2
= mkpathdup("%s", branch2
);
1093 read_mmblob(&orig
, &o
->oid
);
1094 read_mmblob(&src1
, &a
->oid
);
1095 read_mmblob(&src2
, &b
->oid
);
1098 * FIXME: Using a->path for normalization rules in ll_merge could be
1099 * wrong if we renamed from a->path to b->path. We should use the
1100 * target path for where the file will be written.
1102 merge_status
= ll_merge(result_buf
, a
->path
, &orig
, base
,
1103 &src1
, name1
, &src2
, name2
,
1104 opt
->repo
->index
, &ll_opts
);
1105 if (merge_status
== LL_MERGE_BINARY_CONFLICT
)
1106 warning("Cannot merge binary files: %s (%s vs. %s)",
1107 a
->path
, name1
, name2
);
1115 return merge_status
;
1118 static int find_first_merges(struct repository
*repo
,
1119 struct object_array
*result
, const char *path
,
1120 struct commit
*a
, struct commit
*b
)
1123 struct object_array merges
= OBJECT_ARRAY_INIT
;
1124 struct commit
*commit
;
1125 int contains_another
;
1127 char merged_revision
[GIT_MAX_HEXSZ
+ 2];
1128 const char *rev_args
[] = { "rev-list", "--merges", "--ancestry-path",
1129 "--all", merged_revision
, NULL
};
1130 struct rev_info revs
;
1131 struct setup_revision_opt rev_opts
;
1133 memset(result
, 0, sizeof(struct object_array
));
1134 memset(&rev_opts
, 0, sizeof(rev_opts
));
1136 /* get all revisions that merge commit a */
1137 xsnprintf(merged_revision
, sizeof(merged_revision
), "^%s",
1138 oid_to_hex(&a
->object
.oid
));
1139 repo_init_revisions(repo
, &revs
, NULL
);
1140 /* FIXME: can't handle linked worktrees in submodules yet */
1141 revs
.single_worktree
= path
!= NULL
;
1142 setup_revisions(ARRAY_SIZE(rev_args
)-1, rev_args
, &revs
, &rev_opts
);
1144 /* save all revisions from the above list that contain b */
1145 if (prepare_revision_walk(&revs
))
1146 die("revision walk setup failed");
1147 while ((commit
= get_revision(&revs
)) != NULL
) {
1148 struct object
*o
= &(commit
->object
);
1149 int ret
= repo_in_merge_bases(repo
, b
, commit
);
1151 object_array_clear(&merges
);
1152 release_revisions(&revs
);
1156 add_object_array(o
, NULL
, &merges
);
1158 reset_revision_walk();
1160 /* Now we've got all merges that contain a and b. Prune all
1161 * merges that contain another found merge and save them in
1164 for (i
= 0; i
< merges
.nr
; i
++) {
1165 struct commit
*m1
= (struct commit
*) merges
.objects
[i
].item
;
1167 contains_another
= 0;
1168 for (j
= 0; j
< merges
.nr
; j
++) {
1169 struct commit
*m2
= (struct commit
*) merges
.objects
[j
].item
;
1171 int ret
= repo_in_merge_bases(repo
, m2
, m1
);
1173 object_array_clear(&merges
);
1174 release_revisions(&revs
);
1178 contains_another
= 1;
1184 if (!contains_another
)
1185 add_object_array(merges
.objects
[i
].item
, NULL
, result
);
1188 object_array_clear(&merges
);
1189 release_revisions(&revs
);
1193 static void print_commit(struct repository
*repo
, struct commit
*commit
)
1195 struct strbuf sb
= STRBUF_INIT
;
1196 struct pretty_print_context ctx
= {0};
1197 ctx
.date_mode
.type
= DATE_NORMAL
;
1198 /* FIXME: Merge this with output_commit_title() */
1199 assert(!merge_remote_util(commit
));
1200 repo_format_commit_message(repo
, commit
, " %h: %m %s", &sb
, &ctx
);
1201 fprintf(stderr
, "%s\n", sb
.buf
);
1202 strbuf_release(&sb
);
1205 static int is_valid(const struct diff_filespec
*dfs
)
1207 return dfs
->mode
!= 0 && !is_null_oid(&dfs
->oid
);
1210 static int merge_submodule(struct merge_options
*opt
,
1211 struct object_id
*result
, const char *path
,
1212 const struct object_id
*base
, const struct object_id
*a
,
1213 const struct object_id
*b
)
1215 struct repository subrepo
;
1217 struct commit
*commit_base
, *commit_a
, *commit_b
;
1219 struct object_array merges
;
1222 int search
= !opt
->priv
->call_depth
;
1224 /* store a in result in case we fail */
1225 /* FIXME: This is the WRONG resolution for the recursive case when
1226 * we need to be careful to avoid accidentally matching either side.
1227 * Should probably use o instead there, much like we do for merging
1232 /* we can not handle deletion conflicts */
1233 if (is_null_oid(base
))
1240 if (repo_submodule_init(&subrepo
, opt
->repo
, path
, null_oid())) {
1241 output(opt
, 1, _("Failed to merge submodule %s (not checked out)"), path
);
1245 if (!(commit_base
= lookup_commit_reference(&subrepo
, base
)) ||
1246 !(commit_a
= lookup_commit_reference(&subrepo
, a
)) ||
1247 !(commit_b
= lookup_commit_reference(&subrepo
, b
))) {
1248 output(opt
, 1, _("Failed to merge submodule %s (commits not present)"), path
);
1252 /* check whether both changes are forward */
1253 ret2
= repo_in_merge_bases(&subrepo
, commit_base
, commit_a
);
1255 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1260 ret2
= repo_in_merge_bases(&subrepo
, commit_base
, commit_b
);
1262 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1267 output(opt
, 1, _("Failed to merge submodule %s (commits don't follow merge-base)"), path
);
1271 /* Case #1: a is contained in b or vice versa */
1272 ret2
= repo_in_merge_bases(&subrepo
, commit_a
, commit_b
);
1274 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1281 output(opt
, 3, _("Fast-forwarding submodule %s to the following commit:"), path
);
1282 repo_output_commit_title(opt
, &subrepo
, commit_b
);
1283 } else if (show(opt
, 2))
1284 output(opt
, 2, _("Fast-forwarding submodule %s"), path
);
1291 ret2
= repo_in_merge_bases(&subrepo
, commit_b
, commit_a
);
1293 output(opt
, 1, _("Failed to merge submodule %s (repository corrupt)"), path
);
1300 output(opt
, 3, _("Fast-forwarding submodule %s to the following commit:"), path
);
1301 repo_output_commit_title(opt
, &subrepo
, commit_a
);
1302 } else if (show(opt
, 2))
1303 output(opt
, 2, _("Fast-forwarding submodule %s"), path
);
1312 * Case #2: There are one or more merges that contain a and b in
1313 * the submodule. If there is only one, then present it as a
1314 * suggestion to the user, but leave it marked unmerged so the
1315 * user needs to confirm the resolution.
1318 /* Skip the search if makes no sense to the calling context. */
1322 /* find commit which merges them */
1323 parent_count
= find_first_merges(&subrepo
, &merges
, path
,
1324 commit_a
, commit_b
);
1325 switch (parent_count
) {
1327 output(opt
, 1,_("Failed to merge submodule %s (repository corrupt)"), path
);
1331 output(opt
, 1, _("Failed to merge submodule %s (merge following commits not found)"), path
);
1335 output(opt
, 1, _("Failed to merge submodule %s (not fast-forward)"), path
);
1336 output(opt
, 2, _("Found a possible merge resolution for the submodule:\n"));
1337 print_commit(&subrepo
, (struct commit
*) merges
.objects
[0].item
);
1339 "If this is correct simply add it to the index "
1342 " git update-index --cacheinfo 160000 %s \"%s\"\n\n"
1343 "which will accept this suggestion.\n"),
1344 oid_to_hex(&merges
.objects
[0].item
->oid
), path
);
1348 output(opt
, 1, _("Failed to merge submodule %s (multiple merges found)"), path
);
1349 for (i
= 0; i
< merges
.nr
; i
++)
1350 print_commit(&subrepo
, (struct commit
*) merges
.objects
[i
].item
);
1353 object_array_clear(&merges
);
1355 repo_clear(&subrepo
);
1359 static int merge_mode_and_contents(struct merge_options
*opt
,
1360 const struct diff_filespec
*o
,
1361 const struct diff_filespec
*a
,
1362 const struct diff_filespec
*b
,
1363 const char *filename
,
1364 const char *branch1
,
1365 const char *branch2
,
1366 const int extra_marker_size
,
1367 struct merge_file_info
*result
)
1369 if (opt
->branch1
!= branch1
) {
1371 * It's weird getting a reverse merge with HEAD on the bottom
1372 * side of the conflict markers and the other branch on the
1375 return merge_mode_and_contents(opt
, o
, b
, a
,
1378 extra_marker_size
, result
);
1384 if ((S_IFMT
& a
->mode
) != (S_IFMT
& b
->mode
)) {
1387 * FIXME: This is a bad resolution for recursive case; for
1388 * the recursive case we want something that is unlikely to
1389 * accidentally match either side. Also, while it makes
1390 * sense to prefer regular files over symlinks, it doesn't
1391 * make sense to prefer regular files over submodules.
1393 if (S_ISREG(a
->mode
)) {
1394 result
->blob
.mode
= a
->mode
;
1395 oidcpy(&result
->blob
.oid
, &a
->oid
);
1397 result
->blob
.mode
= b
->mode
;
1398 oidcpy(&result
->blob
.oid
, &b
->oid
);
1401 if (!oideq(&a
->oid
, &o
->oid
) && !oideq(&b
->oid
, &o
->oid
))
1407 if (a
->mode
== b
->mode
|| a
->mode
== o
->mode
)
1408 result
->blob
.mode
= b
->mode
;
1410 result
->blob
.mode
= a
->mode
;
1411 if (b
->mode
!= o
->mode
) {
1417 if (oideq(&a
->oid
, &b
->oid
) || oideq(&a
->oid
, &o
->oid
))
1418 oidcpy(&result
->blob
.oid
, &b
->oid
);
1419 else if (oideq(&b
->oid
, &o
->oid
))
1420 oidcpy(&result
->blob
.oid
, &a
->oid
);
1421 else if (S_ISREG(a
->mode
)) {
1422 mmbuffer_t result_buf
;
1423 int ret
= 0, merge_status
;
1425 merge_status
= merge_3way(opt
, &result_buf
, o
, a
, b
,
1429 if ((merge_status
< 0) || !result_buf
.ptr
)
1430 ret
= err(opt
, _("failed to execute internal merge"));
1433 write_object_file(result_buf
.ptr
, result_buf
.size
,
1434 OBJ_BLOB
, &result
->blob
.oid
))
1435 ret
= err(opt
, _("unable to add %s to database"),
1438 free(result_buf
.ptr
);
1441 /* FIXME: bug, what if modes didn't match? */
1442 result
->clean
= (merge_status
== 0);
1443 } else if (S_ISGITLINK(a
->mode
)) {
1444 int clean
= merge_submodule(opt
, &result
->blob
.oid
,
1451 result
->clean
= clean
;
1452 } else if (S_ISLNK(a
->mode
)) {
1453 switch (opt
->recursive_variant
) {
1454 case MERGE_VARIANT_NORMAL
:
1455 oidcpy(&result
->blob
.oid
, &a
->oid
);
1456 if (!oideq(&a
->oid
, &b
->oid
))
1459 case MERGE_VARIANT_OURS
:
1460 oidcpy(&result
->blob
.oid
, &a
->oid
);
1462 case MERGE_VARIANT_THEIRS
:
1463 oidcpy(&result
->blob
.oid
, &b
->oid
);
1467 BUG("unsupported object type in the tree");
1471 output(opt
, 2, _("Auto-merging %s"), filename
);
1476 static int handle_rename_via_dir(struct merge_options
*opt
,
1477 struct rename_conflict_info
*ci
)
1480 * Handle file adds that need to be renamed due to directory rename
1481 * detection. This differs from handle_rename_normal, because
1482 * there is no content merge to do; just move the file into the
1483 * desired final location.
1485 const struct rename
*ren
= ci
->ren1
;
1486 const struct diff_filespec
*dest
= ren
->pair
->two
;
1487 char *file_path
= dest
->path
;
1488 int mark_conflicted
= (opt
->detect_directory_renames
==
1489 MERGE_DIRECTORY_RENAMES_CONFLICT
);
1490 assert(ren
->dir_rename_original_dest
);
1492 if (!opt
->priv
->call_depth
&& would_lose_untracked(opt
, dest
->path
)) {
1493 mark_conflicted
= 1;
1494 file_path
= unique_path(opt
, dest
->path
, ren
->branch
);
1495 output(opt
, 1, _("Error: Refusing to lose untracked file at %s; "
1496 "writing to %s instead."),
1497 dest
->path
, file_path
);
1500 if (mark_conflicted
) {
1502 * Write the file in worktree at file_path. In the index,
1503 * only record the file at dest->path in the appropriate
1506 if (update_file(opt
, 0, dest
, file_path
))
1508 if (file_path
!= dest
->path
)
1510 if (update_stages(opt
, dest
->path
, NULL
,
1511 ren
->branch
== opt
->branch1
? dest
: NULL
,
1512 ren
->branch
== opt
->branch1
? NULL
: dest
))
1514 return 0; /* not clean, but conflicted */
1516 /* Update dest->path both in index and in worktree */
1517 if (update_file(opt
, 1, dest
, dest
->path
))
1519 return 1; /* clean */
1523 static int handle_change_delete(struct merge_options
*opt
,
1524 const char *path
, const char *old_path
,
1525 const struct diff_filespec
*o
,
1526 const struct diff_filespec
*changed
,
1527 const char *change_branch
,
1528 const char *delete_branch
,
1529 const char *change
, const char *change_past
)
1531 char *alt_path
= NULL
;
1532 const char *update_path
= path
;
1535 if (dir_in_way(opt
->repo
->index
, path
, !opt
->priv
->call_depth
, 0) ||
1536 (!opt
->priv
->call_depth
&& would_lose_untracked(opt
, path
))) {
1537 update_path
= alt_path
= unique_path(opt
, path
, change_branch
);
1540 if (opt
->priv
->call_depth
) {
1542 * We cannot arbitrarily accept either a_sha or b_sha as
1543 * correct; since there is no true "middle point" between
1544 * them, simply reuse the base version for virtual merge base.
1546 ret
= remove_file_from_index(opt
->repo
->index
, path
);
1548 ret
= update_file(opt
, 0, o
, update_path
);
1551 * Despite the four nearly duplicate messages and argument
1552 * lists below and the ugliness of the nested if-statements,
1553 * having complete messages makes the job easier for
1556 * The slight variance among the cases is due to the fact
1558 * 1) directory/file conflicts (in effect if
1559 * !alt_path) could cause us to need to write the
1560 * file to a different path.
1561 * 2) renames (in effect if !old_path) could mean that
1562 * there are two names for the path that the user
1563 * may know the file by.
1567 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1568 "and %s in %s. Version %s of %s left in tree."),
1569 change
, path
, delete_branch
, change_past
,
1570 change_branch
, change_branch
, path
);
1572 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1573 "and %s to %s in %s. Version %s of %s left in tree."),
1574 change
, old_path
, delete_branch
, change_past
, path
,
1575 change_branch
, change_branch
, path
);
1579 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1580 "and %s in %s. Version %s of %s left in tree at %s."),
1581 change
, path
, delete_branch
, change_past
,
1582 change_branch
, change_branch
, path
, alt_path
);
1584 output(opt
, 1, _("CONFLICT (%s/delete): %s deleted in %s "
1585 "and %s to %s in %s. Version %s of %s left in tree at %s."),
1586 change
, old_path
, delete_branch
, change_past
, path
,
1587 change_branch
, change_branch
, path
, alt_path
);
1591 * No need to call update_file() on path when change_branch ==
1592 * opt->branch1 && !alt_path, since that would needlessly touch
1593 * path. We could call update_file_flags() with update_cache=0
1594 * and update_wd=0, but that's a no-op.
1596 if (change_branch
!= opt
->branch1
|| alt_path
)
1597 ret
= update_file(opt
, 0, changed
, update_path
);
1604 static int handle_rename_delete(struct merge_options
*opt
,
1605 struct rename_conflict_info
*ci
)
1607 const struct rename
*ren
= ci
->ren1
;
1608 const struct diff_filespec
*orig
= ren
->pair
->one
;
1609 const struct diff_filespec
*dest
= ren
->pair
->two
;
1610 const char *rename_branch
= ren
->branch
;
1611 const char *delete_branch
= (opt
->branch1
== ren
->branch
?
1612 opt
->branch2
: opt
->branch1
);
1614 if (handle_change_delete(opt
,
1615 opt
->priv
->call_depth
? orig
->path
: dest
->path
,
1616 opt
->priv
->call_depth
? NULL
: orig
->path
,
1618 rename_branch
, delete_branch
,
1619 _("rename"), _("renamed")))
1622 if (opt
->priv
->call_depth
)
1623 return remove_file_from_index(opt
->repo
->index
, dest
->path
);
1625 return update_stages(opt
, dest
->path
, NULL
,
1626 rename_branch
== opt
->branch1
? dest
: NULL
,
1627 rename_branch
== opt
->branch1
? NULL
: dest
);
1630 static int handle_file_collision(struct merge_options
*opt
,
1631 const char *collide_path
,
1632 const char *prev_path1
,
1633 const char *prev_path2
,
1634 const char *branch1
, const char *branch2
,
1635 struct diff_filespec
*a
,
1636 struct diff_filespec
*b
)
1638 struct merge_file_info mfi
;
1639 struct diff_filespec null
;
1640 char *alt_path
= NULL
;
1641 const char *update_path
= collide_path
;
1644 * It's easiest to get the correct things into stage 2 and 3, and
1645 * to make sure that the content merge puts HEAD before the other
1646 * branch if we just ensure that branch1 == opt->branch1. So, simply
1647 * flip arguments around if we don't have that.
1649 if (branch1
!= opt
->branch1
) {
1650 return handle_file_collision(opt
, collide_path
,
1651 prev_path2
, prev_path1
,
1656 /* Remove rename sources if rename/add or rename/rename(2to1) */
1658 remove_file(opt
, 1, prev_path1
,
1659 opt
->priv
->call_depth
|| would_lose_untracked(opt
, prev_path1
));
1661 remove_file(opt
, 1, prev_path2
,
1662 opt
->priv
->call_depth
|| would_lose_untracked(opt
, prev_path2
));
1665 * Remove the collision path, if it wouldn't cause dirty contents
1666 * or an untracked file to get lost. We'll either overwrite with
1667 * merged contents, or just write out to differently named files.
1669 if (was_dirty(opt
, collide_path
)) {
1670 output(opt
, 1, _("Refusing to lose dirty file at %s"),
1672 update_path
= alt_path
= unique_path(opt
, collide_path
, "merged");
1673 } else if (would_lose_untracked(opt
, collide_path
)) {
1675 * Only way we get here is if both renames were from
1676 * a directory rename AND user had an untracked file
1677 * at the location where both files end up after the
1678 * two directory renames. See testcase 10d of t6043.
1680 output(opt
, 1, _("Refusing to lose untracked file at "
1681 "%s, even though it's in the way."),
1683 update_path
= alt_path
= unique_path(opt
, collide_path
, "merged");
1686 * FIXME: It's possible that the two files are identical
1687 * and that the current working copy happens to match, in
1688 * which case we are unnecessarily touching the working
1689 * tree file. It's not a likely enough scenario that I
1690 * want to code up the checks for it and a better fix is
1691 * available if we restructure how unpack_trees() and
1692 * merge-recursive interoperate anyway, so punting for
1695 remove_file(opt
, 0, collide_path
, 0);
1698 /* Store things in diff_filespecs for functions that need it */
1699 null
.path
= (char *)collide_path
;
1700 oidcpy(&null
.oid
, null_oid());
1703 if (merge_mode_and_contents(opt
, &null
, a
, b
, collide_path
,
1704 branch1
, branch2
, opt
->priv
->call_depth
* 2, &mfi
))
1706 mfi
.clean
&= !alt_path
;
1707 if (update_file(opt
, mfi
.clean
, &mfi
.blob
, update_path
))
1709 if (!mfi
.clean
&& !opt
->priv
->call_depth
&&
1710 update_stages(opt
, collide_path
, NULL
, a
, b
))
1714 * FIXME: If both a & b both started with conflicts (only possible
1715 * if they came from a rename/rename(2to1)), but had IDENTICAL
1716 * contents including those conflicts, then in the next line we claim
1717 * it was clean. If someone cares about this case, we should have the
1718 * caller notify us if we started with conflicts.
1723 static int handle_rename_add(struct merge_options
*opt
,
1724 struct rename_conflict_info
*ci
)
1726 /* a was renamed to c, and a separate c was added. */
1727 struct diff_filespec
*a
= ci
->ren1
->pair
->one
;
1728 struct diff_filespec
*c
= ci
->ren1
->pair
->two
;
1729 char *path
= c
->path
;
1730 char *prev_path_desc
;
1731 struct merge_file_info mfi
;
1733 const char *rename_branch
= ci
->ren1
->branch
;
1734 const char *add_branch
= (opt
->branch1
== rename_branch
?
1735 opt
->branch2
: opt
->branch1
);
1736 int other_stage
= (ci
->ren1
->branch
== opt
->branch1
? 3 : 2);
1738 output(opt
, 1, _("CONFLICT (rename/add): "
1739 "Rename %s->%s in %s. Added %s in %s"),
1740 a
->path
, c
->path
, rename_branch
,
1741 c
->path
, add_branch
);
1743 prev_path_desc
= xstrfmt("version of %s from %s", path
, a
->path
);
1744 ci
->ren1
->src_entry
->stages
[other_stage
].path
= a
->path
;
1745 if (merge_mode_and_contents(opt
, a
, c
,
1746 &ci
->ren1
->src_entry
->stages
[other_stage
],
1748 opt
->branch1
, opt
->branch2
,
1749 1 + opt
->priv
->call_depth
* 2, &mfi
))
1751 free(prev_path_desc
);
1753 ci
->ren1
->dst_entry
->stages
[other_stage
].path
= mfi
.blob
.path
= c
->path
;
1754 return handle_file_collision(opt
,
1755 c
->path
, a
->path
, NULL
,
1756 rename_branch
, add_branch
,
1758 &ci
->ren1
->dst_entry
->stages
[other_stage
]);
1761 static char *find_path_for_conflict(struct merge_options
*opt
,
1763 const char *branch1
,
1764 const char *branch2
)
1766 char *new_path
= NULL
;
1767 if (dir_in_way(opt
->repo
->index
, path
, !opt
->priv
->call_depth
, 0)) {
1768 new_path
= unique_path(opt
, path
, branch1
);
1769 output(opt
, 1, _("%s is a directory in %s adding "
1771 path
, branch2
, new_path
);
1772 } else if (would_lose_untracked(opt
, path
)) {
1773 new_path
= unique_path(opt
, path
, branch1
);
1774 output(opt
, 1, _("Refusing to lose untracked file"
1775 " at %s; adding as %s instead"),
1783 * Toggle the stage number between "ours" and "theirs" (2 and 3).
1785 static inline int flip_stage(int stage
)
1787 return (2 + 3) - stage
;
1790 static int handle_rename_rename_1to2(struct merge_options
*opt
,
1791 struct rename_conflict_info
*ci
)
1793 /* One file was renamed in both branches, but to different names. */
1794 struct merge_file_info mfi
;
1795 struct diff_filespec
*add
;
1796 struct diff_filespec
*o
= ci
->ren1
->pair
->one
;
1797 struct diff_filespec
*a
= ci
->ren1
->pair
->two
;
1798 struct diff_filespec
*b
= ci
->ren2
->pair
->two
;
1801 output(opt
, 1, _("CONFLICT (rename/rename): "
1802 "Rename \"%s\"->\"%s\" in branch \"%s\" "
1803 "rename \"%s\"->\"%s\" in \"%s\"%s"),
1804 o
->path
, a
->path
, ci
->ren1
->branch
,
1805 o
->path
, b
->path
, ci
->ren2
->branch
,
1806 opt
->priv
->call_depth
? _(" (left unresolved)") : "");
1808 path_desc
= xstrfmt("%s and %s, both renamed from %s",
1809 a
->path
, b
->path
, o
->path
);
1810 if (merge_mode_and_contents(opt
, o
, a
, b
, path_desc
,
1811 ci
->ren1
->branch
, ci
->ren2
->branch
,
1812 opt
->priv
->call_depth
* 2, &mfi
))
1816 if (opt
->priv
->call_depth
)
1817 remove_file_from_index(opt
->repo
->index
, o
->path
);
1820 * For each destination path, we need to see if there is a
1821 * rename/add collision. If not, we can write the file out
1822 * to the specified location.
1824 add
= &ci
->ren1
->dst_entry
->stages
[flip_stage(2)];
1825 if (is_valid(add
)) {
1826 add
->path
= mfi
.blob
.path
= a
->path
;
1827 if (handle_file_collision(opt
, a
->path
,
1831 &mfi
.blob
, add
) < 0)
1834 char *new_path
= find_path_for_conflict(opt
, a
->path
,
1837 if (update_file(opt
, 0, &mfi
.blob
,
1838 new_path
? new_path
: a
->path
))
1841 if (!opt
->priv
->call_depth
&&
1842 update_stages(opt
, a
->path
, NULL
, a
, NULL
))
1846 if (!mfi
.clean
&& mfi
.blob
.mode
== a
->mode
&&
1847 oideq(&mfi
.blob
.oid
, &a
->oid
)) {
1849 * Getting here means we were attempting to merge a binary
1850 * blob. Since we can't merge binaries, the merge algorithm
1851 * just takes one side. But we don't want to copy the
1852 * contents of one side to both paths; we'd rather use the
1853 * original content at the given path for each path.
1855 oidcpy(&mfi
.blob
.oid
, &b
->oid
);
1856 mfi
.blob
.mode
= b
->mode
;
1858 add
= &ci
->ren2
->dst_entry
->stages
[flip_stage(3)];
1859 if (is_valid(add
)) {
1860 add
->path
= mfi
.blob
.path
= b
->path
;
1861 if (handle_file_collision(opt
, b
->path
,
1865 add
, &mfi
.blob
) < 0)
1868 char *new_path
= find_path_for_conflict(opt
, b
->path
,
1871 if (update_file(opt
, 0, &mfi
.blob
,
1872 new_path
? new_path
: b
->path
))
1875 if (!opt
->priv
->call_depth
&&
1876 update_stages(opt
, b
->path
, NULL
, NULL
, b
))
1883 static int handle_rename_rename_2to1(struct merge_options
*opt
,
1884 struct rename_conflict_info
*ci
)
1886 /* Two files, a & b, were renamed to the same thing, c. */
1887 struct diff_filespec
*a
= ci
->ren1
->pair
->one
;
1888 struct diff_filespec
*b
= ci
->ren2
->pair
->one
;
1889 struct diff_filespec
*c1
= ci
->ren1
->pair
->two
;
1890 struct diff_filespec
*c2
= ci
->ren2
->pair
->two
;
1891 char *path
= c1
->path
; /* == c2->path */
1892 char *path_side_1_desc
;
1893 char *path_side_2_desc
;
1894 struct merge_file_info mfi_c1
;
1895 struct merge_file_info mfi_c2
;
1896 int ostage1
, ostage2
;
1898 output(opt
, 1, _("CONFLICT (rename/rename): "
1899 "Rename %s->%s in %s. "
1900 "Rename %s->%s in %s"),
1901 a
->path
, c1
->path
, ci
->ren1
->branch
,
1902 b
->path
, c2
->path
, ci
->ren2
->branch
);
1904 path_side_1_desc
= xstrfmt("version of %s from %s", path
, a
->path
);
1905 path_side_2_desc
= xstrfmt("version of %s from %s", path
, b
->path
);
1906 ostage1
= ci
->ren1
->branch
== opt
->branch1
? 3 : 2;
1907 ostage2
= flip_stage(ostage1
);
1908 ci
->ren1
->src_entry
->stages
[ostage1
].path
= a
->path
;
1909 ci
->ren2
->src_entry
->stages
[ostage2
].path
= b
->path
;
1910 if (merge_mode_and_contents(opt
, a
, c1
,
1911 &ci
->ren1
->src_entry
->stages
[ostage1
],
1913 opt
->branch1
, opt
->branch2
,
1914 1 + opt
->priv
->call_depth
* 2, &mfi_c1
) ||
1915 merge_mode_and_contents(opt
, b
,
1916 &ci
->ren2
->src_entry
->stages
[ostage2
],
1917 c2
, path_side_2_desc
,
1918 opt
->branch1
, opt
->branch2
,
1919 1 + opt
->priv
->call_depth
* 2, &mfi_c2
))
1921 free(path_side_1_desc
);
1922 free(path_side_2_desc
);
1923 mfi_c1
.blob
.path
= path
;
1924 mfi_c2
.blob
.path
= path
;
1926 return handle_file_collision(opt
, path
, a
->path
, b
->path
,
1927 ci
->ren1
->branch
, ci
->ren2
->branch
,
1928 &mfi_c1
.blob
, &mfi_c2
.blob
);
1932 * Get the diff_filepairs changed between o_tree and tree.
1934 static struct diff_queue_struct
*get_diffpairs(struct merge_options
*opt
,
1935 struct tree
*o_tree
,
1938 struct diff_queue_struct
*ret
;
1939 struct diff_options opts
;
1941 repo_diff_setup(opt
->repo
, &opts
);
1942 opts
.flags
.recursive
= 1;
1943 opts
.flags
.rename_empty
= 0;
1944 opts
.detect_rename
= merge_detect_rename(opt
);
1946 * We do not have logic to handle the detection of copies. In
1947 * fact, it may not even make sense to add such logic: would we
1948 * really want a change to a base file to be propagated through
1949 * multiple other files by a merge?
1951 if (opts
.detect_rename
> DIFF_DETECT_RENAME
)
1952 opts
.detect_rename
= DIFF_DETECT_RENAME
;
1953 opts
.rename_limit
= (opt
->rename_limit
>= 0) ? opt
->rename_limit
: 7000;
1954 opts
.rename_score
= opt
->rename_score
;
1955 opts
.show_rename_progress
= opt
->show_rename_progress
;
1956 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1957 diff_setup_done(&opts
);
1958 diff_tree_oid(&o_tree
->object
.oid
, &tree
->object
.oid
, "", &opts
);
1959 diffcore_std(&opts
);
1960 if (opts
.needed_rename_limit
> opt
->priv
->needed_rename_limit
)
1961 opt
->priv
->needed_rename_limit
= opts
.needed_rename_limit
;
1963 ret
= xmalloc(sizeof(*ret
));
1964 *ret
= diff_queued_diff
;
1966 opts
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
1967 diff_queued_diff
.nr
= 0;
1968 diff_queued_diff
.queue
= NULL
;
1973 static int tree_has_path(struct repository
*r
, struct tree
*tree
,
1976 struct object_id hashy
;
1977 unsigned short mode_o
;
1979 return !get_tree_entry(r
,
1980 &tree
->object
.oid
, path
,
1985 * Return a new string that replaces the beginning portion (which matches
1986 * entry->dir), with entry->new_dir. In perl-speak:
1987 * new_path_name = (old_path =~ s/entry->dir/entry->new_dir/);
1989 * Caller must ensure that old_path starts with entry->dir + '/'.
1991 static char *apply_dir_rename(struct dir_rename_entry
*entry
,
1992 const char *old_path
)
1994 struct strbuf new_path
= STRBUF_INIT
;
1997 if (entry
->non_unique_new_dir
)
2000 oldlen
= strlen(entry
->dir
);
2001 if (entry
->new_dir
.len
== 0)
2003 * If someone renamed/merged a subdirectory into the root
2004 * directory (e.g. 'some/subdir' -> ''), then we want to
2007 * as the rename; we need to make old_path + oldlen advance
2008 * past the '/' character.
2011 newlen
= entry
->new_dir
.len
+ (strlen(old_path
) - oldlen
) + 1;
2012 strbuf_grow(&new_path
, newlen
);
2013 strbuf_addbuf(&new_path
, &entry
->new_dir
);
2014 strbuf_addstr(&new_path
, &old_path
[oldlen
]);
2016 return strbuf_detach(&new_path
, NULL
);
2019 static void get_renamed_dir_portion(const char *old_path
, const char *new_path
,
2020 char **old_dir
, char **new_dir
)
2022 char *end_of_old
, *end_of_new
;
2024 /* Default return values: NULL, meaning no rename */
2030 * "a/b/c/d/e/foo.c" -> "a/b/some/thing/else/e/foo.c"
2031 * the "e/foo.c" part is the same, we just want to know that
2032 * "a/b/c/d" was renamed to "a/b/some/thing/else"
2033 * so, for this example, this function returns "a/b/c/d" in
2034 * *old_dir and "a/b/some/thing/else" in *new_dir.
2038 * If the basename of the file changed, we don't care. We want
2039 * to know which portion of the directory, if any, changed.
2041 end_of_old
= strrchr(old_path
, '/');
2042 end_of_new
= strrchr(new_path
, '/');
2045 * If end_of_old is NULL, old_path wasn't in a directory, so there
2046 * could not be a directory rename (our rule elsewhere that a
2047 * directory which still exists is not considered to have been
2048 * renamed means the root directory can never be renamed -- because
2049 * the root directory always exists).
2052 return; /* Note: *old_dir and *new_dir are still NULL */
2055 * If new_path contains no directory (end_of_new is NULL), then we
2056 * have a rename of old_path's directory to the root directory.
2059 *old_dir
= xstrndup(old_path
, end_of_old
- old_path
);
2060 *new_dir
= xstrdup("");
2064 /* Find the first non-matching character traversing backwards */
2065 while (*--end_of_new
== *--end_of_old
&&
2066 end_of_old
!= old_path
&&
2067 end_of_new
!= new_path
)
2068 ; /* Do nothing; all in the while loop */
2071 * If both got back to the beginning of their strings, then the
2072 * directory didn't change at all, only the basename did.
2074 if (end_of_old
== old_path
&& end_of_new
== new_path
&&
2075 *end_of_old
== *end_of_new
)
2076 return; /* Note: *old_dir and *new_dir are still NULL */
2079 * If end_of_new got back to the beginning of its string, and
2080 * end_of_old got back to the beginning of some subdirectory, then
2081 * we have a rename/merge of a subdirectory into the root, which
2082 * needs slightly special handling.
2084 * Note: There is no need to consider the opposite case, with a
2085 * rename/merge of the root directory into some subdirectory
2086 * because as noted above the root directory always exists so it
2087 * cannot be considered to be renamed.
2089 if (end_of_new
== new_path
&&
2090 end_of_old
!= old_path
&& end_of_old
[-1] == '/') {
2091 *old_dir
= xstrndup(old_path
, --end_of_old
- old_path
);
2092 *new_dir
= xstrdup("");
2097 * We've found the first non-matching character in the directory
2098 * paths. That means the current characters we were looking at
2099 * were part of the first non-matching subdir name going back from
2100 * the end of the strings. Get the whole name by advancing both
2101 * end_of_old and end_of_new to the NEXT '/' character. That will
2102 * represent the entire directory rename.
2104 * The reason for the increment is cases like
2105 * a/b/star/foo/whatever.c -> a/b/tar/foo/random.c
2106 * After dropping the basename and going back to the first
2107 * non-matching character, we're now comparing:
2109 * and we want to be comparing:
2110 * a/b/star/ and a/b/tar/
2111 * but without the pre-increment, the one on the right would stay
2114 end_of_old
= strchr(++end_of_old
, '/');
2115 end_of_new
= strchr(++end_of_new
, '/');
2117 /* Copy the old and new directories into *old_dir and *new_dir. */
2118 *old_dir
= xstrndup(old_path
, end_of_old
- old_path
);
2119 *new_dir
= xstrndup(new_path
, end_of_new
- new_path
);
2122 static void remove_hashmap_entries(struct hashmap
*dir_renames
,
2123 struct string_list
*items_to_remove
)
2126 struct dir_rename_entry
*entry
;
2128 for (i
= 0; i
< items_to_remove
->nr
; i
++) {
2129 entry
= items_to_remove
->items
[i
].util
;
2130 hashmap_remove(dir_renames
, &entry
->ent
, NULL
);
2132 string_list_clear(items_to_remove
, 0);
2136 * See if there is a directory rename for path, and if there are any file
2137 * level conflicts for the renamed location. If there is a rename and
2138 * there are no conflicts, return the new name. Otherwise, return NULL.
2140 static char *handle_path_level_conflicts(struct merge_options
*opt
,
2142 struct dir_rename_entry
*entry
,
2143 struct hashmap
*collisions
,
2146 char *new_path
= NULL
;
2147 struct collision_entry
*collision_ent
;
2149 struct strbuf collision_paths
= STRBUF_INIT
;
2152 * entry has the mapping of old directory name to new directory name
2153 * that we want to apply to path.
2155 new_path
= apply_dir_rename(entry
, path
);
2158 /* This should only happen when entry->non_unique_new_dir set */
2159 if (!entry
->non_unique_new_dir
)
2160 BUG("entry->non_unique_new_dir not set and !new_path");
2161 output(opt
, 1, _("CONFLICT (directory rename split): "
2162 "Unclear where to place %s because directory "
2163 "%s was renamed to multiple other directories, "
2164 "with no destination getting a majority of the "
2172 * The caller needs to have ensured that it has pre-populated
2173 * collisions with all paths that map to new_path. Do a quick check
2174 * to ensure that's the case.
2176 collision_ent
= collision_find_entry(collisions
, new_path
);
2178 BUG("collision_ent is NULL");
2181 * Check for one-sided add/add/.../add conflicts, i.e.
2182 * where implicit renames from the other side doing
2183 * directory rename(s) can affect this side of history
2184 * to put multiple paths into the same location. Warn
2185 * and bail on directory renames for such paths.
2187 if (collision_ent
->reported_already
) {
2189 } else if (tree_has_path(opt
->repo
, tree
, new_path
)) {
2190 collision_ent
->reported_already
= 1;
2191 strbuf_add_separated_string_list(&collision_paths
, ", ",
2192 &collision_ent
->source_files
);
2193 output(opt
, 1, _("CONFLICT (implicit dir rename): Existing "
2194 "file/dir at %s in the way of implicit "
2195 "directory rename(s) putting the following "
2196 "path(s) there: %s."),
2197 new_path
, collision_paths
.buf
);
2199 } else if (collision_ent
->source_files
.nr
> 1) {
2200 collision_ent
->reported_already
= 1;
2201 strbuf_add_separated_string_list(&collision_paths
, ", ",
2202 &collision_ent
->source_files
);
2203 output(opt
, 1, _("CONFLICT (implicit dir rename): Cannot map "
2204 "more than one path to %s; implicit directory "
2205 "renames tried to put these paths there: %s"),
2206 new_path
, collision_paths
.buf
);
2210 /* Free memory we no longer need */
2211 strbuf_release(&collision_paths
);
2212 if (!clean
&& new_path
) {
2221 * There are a couple things we want to do at the directory level:
2222 * 1. Check for both sides renaming to the same thing, in order to avoid
2223 * implicit renaming of files that should be left in place. (See
2224 * testcase 6b in t6043 for details.)
2225 * 2. Prune directory renames if there are still files left in the
2226 * original directory. These represent a partial directory rename,
2227 * i.e. a rename where only some of the files within the directory
2228 * were renamed elsewhere. (Technically, this could be done earlier
2229 * in get_directory_renames(), except that would prevent us from
2230 * doing the previous check and thus failing testcase 6b.)
2231 * 3. Check for rename/rename(1to2) conflicts (at the directory level).
2232 * In the future, we could potentially record this info as well and
2233 * omit reporting rename/rename(1to2) conflicts for each path within
2234 * the affected directories, thus cleaning up the merge output.
2235 * NOTE: We do NOT check for rename/rename(2to1) conflicts at the
2236 * directory level, because merging directories is fine. If it
2237 * causes conflicts for files within those merged directories, then
2238 * that should be detected at the individual path level.
2240 static void handle_directory_level_conflicts(struct merge_options
*opt
,
2241 struct hashmap
*dir_re_head
,
2243 struct hashmap
*dir_re_merge
,
2246 struct hashmap_iter iter
;
2247 struct dir_rename_entry
*head_ent
;
2248 struct dir_rename_entry
*merge_ent
;
2250 struct string_list remove_from_head
= STRING_LIST_INIT_NODUP
;
2251 struct string_list remove_from_merge
= STRING_LIST_INIT_NODUP
;
2253 hashmap_for_each_entry(dir_re_head
, &iter
, head_ent
,
2254 ent
/* member name */) {
2255 merge_ent
= dir_rename_find_entry(dir_re_merge
, head_ent
->dir
);
2257 !head_ent
->non_unique_new_dir
&&
2258 !merge_ent
->non_unique_new_dir
&&
2259 !strbuf_cmp(&head_ent
->new_dir
, &merge_ent
->new_dir
)) {
2260 /* 1. Renamed identically; remove it from both sides */
2261 string_list_append(&remove_from_head
,
2262 head_ent
->dir
)->util
= head_ent
;
2263 strbuf_release(&head_ent
->new_dir
);
2264 string_list_append(&remove_from_merge
,
2265 merge_ent
->dir
)->util
= merge_ent
;
2266 strbuf_release(&merge_ent
->new_dir
);
2267 } else if (tree_has_path(opt
->repo
, head
, head_ent
->dir
)) {
2268 /* 2. This wasn't a directory rename after all */
2269 string_list_append(&remove_from_head
,
2270 head_ent
->dir
)->util
= head_ent
;
2271 strbuf_release(&head_ent
->new_dir
);
2275 remove_hashmap_entries(dir_re_head
, &remove_from_head
);
2276 remove_hashmap_entries(dir_re_merge
, &remove_from_merge
);
2278 hashmap_for_each_entry(dir_re_merge
, &iter
, merge_ent
,
2279 ent
/* member name */) {
2280 head_ent
= dir_rename_find_entry(dir_re_head
, merge_ent
->dir
);
2281 if (tree_has_path(opt
->repo
, merge
, merge_ent
->dir
)) {
2282 /* 2. This wasn't a directory rename after all */
2283 string_list_append(&remove_from_merge
,
2284 merge_ent
->dir
)->util
= merge_ent
;
2285 } else if (head_ent
&&
2286 !head_ent
->non_unique_new_dir
&&
2287 !merge_ent
->non_unique_new_dir
) {
2288 /* 3. rename/rename(1to2) */
2290 * We can assume it's not rename/rename(1to1) because
2291 * that was case (1), already checked above. So we
2292 * know that head_ent->new_dir and merge_ent->new_dir
2293 * are different strings.
2295 output(opt
, 1, _("CONFLICT (rename/rename): "
2296 "Rename directory %s->%s in %s. "
2297 "Rename directory %s->%s in %s"),
2298 head_ent
->dir
, head_ent
->new_dir
.buf
, opt
->branch1
,
2299 head_ent
->dir
, merge_ent
->new_dir
.buf
, opt
->branch2
);
2300 string_list_append(&remove_from_head
,
2301 head_ent
->dir
)->util
= head_ent
;
2302 strbuf_release(&head_ent
->new_dir
);
2303 string_list_append(&remove_from_merge
,
2304 merge_ent
->dir
)->util
= merge_ent
;
2305 strbuf_release(&merge_ent
->new_dir
);
2309 remove_hashmap_entries(dir_re_head
, &remove_from_head
);
2310 remove_hashmap_entries(dir_re_merge
, &remove_from_merge
);
2313 static struct hashmap
*get_directory_renames(struct diff_queue_struct
*pairs
)
2315 struct hashmap
*dir_renames
;
2316 struct hashmap_iter iter
;
2317 struct dir_rename_entry
*entry
;
2321 * Typically, we think of a directory rename as all files from a
2322 * certain directory being moved to a target directory. However,
2323 * what if someone first moved two files from the original
2324 * directory in one commit, and then renamed the directory
2325 * somewhere else in a later commit? At merge time, we just know
2326 * that files from the original directory went to two different
2327 * places, and that the bulk of them ended up in the same place.
2328 * We want each directory rename to represent where the bulk of the
2329 * files from that directory end up; this function exists to find
2330 * where the bulk of the files went.
2332 * The first loop below simply iterates through the list of file
2333 * renames, finding out how often each directory rename pair
2334 * possibility occurs.
2336 dir_renames
= xmalloc(sizeof(*dir_renames
));
2337 dir_rename_init(dir_renames
);
2338 for (i
= 0; i
< pairs
->nr
; ++i
) {
2339 struct string_list_item
*item
;
2341 struct diff_filepair
*pair
= pairs
->queue
[i
];
2342 char *old_dir
, *new_dir
;
2344 /* File not part of directory rename if it wasn't renamed */
2345 if (pair
->status
!= 'R')
2348 get_renamed_dir_portion(pair
->one
->path
, pair
->two
->path
,
2349 &old_dir
, &new_dir
);
2351 /* Directory didn't change at all; ignore this one. */
2354 entry
= dir_rename_find_entry(dir_renames
, old_dir
);
2356 entry
= xmalloc(sizeof(*entry
));
2357 dir_rename_entry_init(entry
, old_dir
);
2358 hashmap_put(dir_renames
, &entry
->ent
);
2362 item
= string_list_lookup(&entry
->possible_new_dirs
, new_dir
);
2364 item
= string_list_insert(&entry
->possible_new_dirs
,
2366 item
->util
= xcalloc(1, sizeof(int));
2375 * For each directory with files moved out of it, we find out which
2376 * target directory received the most files so we can declare it to
2377 * be the "winning" target location for the directory rename. This
2378 * winner gets recorded in new_dir. If there is no winner
2379 * (multiple target directories received the same number of files),
2380 * we set non_unique_new_dir. Once we've determined the winner (or
2381 * that there is no winner), we no longer need possible_new_dirs.
2383 hashmap_for_each_entry(dir_renames
, &iter
, entry
,
2384 ent
/* member name */) {
2389 for (i
= 0; i
< entry
->possible_new_dirs
.nr
; i
++) {
2390 int *count
= entry
->possible_new_dirs
.items
[i
].util
;
2394 else if (*count
> max
) {
2396 best
= entry
->possible_new_dirs
.items
[i
].string
;
2400 entry
->non_unique_new_dir
= 1;
2402 assert(entry
->new_dir
.len
== 0);
2403 strbuf_addstr(&entry
->new_dir
, best
);
2406 * The relevant directory sub-portion of the original full
2407 * filepaths were xstrndup'ed before inserting into
2408 * possible_new_dirs, and instead of manually iterating the
2409 * list and free'ing each, just lie and tell
2410 * possible_new_dirs that it did the strdup'ing so that it
2411 * will free them for us.
2413 entry
->possible_new_dirs
.strdup_strings
= 1;
2414 string_list_clear(&entry
->possible_new_dirs
, 1);
2420 static struct dir_rename_entry
*check_dir_renamed(const char *path
,
2421 struct hashmap
*dir_renames
)
2423 char *temp
= xstrdup(path
);
2425 struct dir_rename_entry
*entry
= NULL
;
2427 while ((end
= strrchr(temp
, '/'))) {
2429 entry
= dir_rename_find_entry(dir_renames
, temp
);
2437 static void compute_collisions(struct hashmap
*collisions
,
2438 struct hashmap
*dir_renames
,
2439 struct diff_queue_struct
*pairs
)
2444 * Multiple files can be mapped to the same path due to directory
2445 * renames done by the other side of history. Since that other
2446 * side of history could have merged multiple directories into one,
2447 * if our side of history added the same file basename to each of
2448 * those directories, then all N of them would get implicitly
2449 * renamed by the directory rename detection into the same path,
2450 * and we'd get an add/add/.../add conflict, and all those adds
2451 * from *this* side of history. This is not representable in the
2452 * index, and users aren't going to easily be able to make sense of
2453 * it. So we need to provide a good warning about what's
2454 * happening, and fall back to no-directory-rename detection
2455 * behavior for those paths.
2457 * See testcases 9e and all of section 5 from t6043 for examples.
2459 collision_init(collisions
);
2461 for (i
= 0; i
< pairs
->nr
; ++i
) {
2462 struct dir_rename_entry
*dir_rename_ent
;
2463 struct collision_entry
*collision_ent
;
2465 struct diff_filepair
*pair
= pairs
->queue
[i
];
2467 if (pair
->status
!= 'A' && pair
->status
!= 'R')
2469 dir_rename_ent
= check_dir_renamed(pair
->two
->path
,
2471 if (!dir_rename_ent
)
2474 new_path
= apply_dir_rename(dir_rename_ent
, pair
->two
->path
);
2477 * dir_rename_ent->non_unique_new_path is true, which
2478 * means there is no directory rename for us to use,
2479 * which means it won't cause us any additional
2483 collision_ent
= collision_find_entry(collisions
, new_path
);
2484 if (!collision_ent
) {
2485 CALLOC_ARRAY(collision_ent
, 1);
2486 hashmap_entry_init(&collision_ent
->ent
,
2488 hashmap_put(collisions
, &collision_ent
->ent
);
2489 collision_ent
->target_file
= new_path
;
2493 string_list_insert(&collision_ent
->source_files
,
2498 static char *check_for_directory_rename(struct merge_options
*opt
,
2501 struct hashmap
*dir_renames
,
2502 struct hashmap
*dir_rename_exclusions
,
2503 struct hashmap
*collisions
,
2506 char *new_path
= NULL
;
2507 struct dir_rename_entry
*entry
= check_dir_renamed(path
, dir_renames
);
2508 struct dir_rename_entry
*oentry
= NULL
;
2514 * This next part is a little weird. We do not want to do an
2515 * implicit rename into a directory we renamed on our side, because
2516 * that will result in a spurious rename/rename(1to2) conflict. An
2518 * Base commit: dumbdir/afile, otherdir/bfile
2519 * Side 1: smrtdir/afile, otherdir/bfile
2520 * Side 2: dumbdir/afile, dumbdir/bfile
2521 * Here, while working on Side 1, we could notice that otherdir was
2522 * renamed/merged to dumbdir, and change the diff_filepair for
2523 * otherdir/bfile into a rename into dumbdir/bfile. However, Side
2524 * 2 will notice the rename from dumbdir to smrtdir, and do the
2525 * transitive rename to move it from dumbdir/bfile to
2526 * smrtdir/bfile. That gives us bfile in dumbdir vs being in
2527 * smrtdir, a rename/rename(1to2) conflict. We really just want
2528 * the file to end up in smrtdir. And the way to achieve that is
2529 * to not let Side1 do the rename to dumbdir, since we know that is
2530 * the source of one of our directory renames.
2532 * That's why oentry and dir_rename_exclusions is here.
2534 * As it turns out, this also prevents N-way transient rename
2535 * confusion; See testcases 9c and 9d of t6043.
2537 oentry
= dir_rename_find_entry(dir_rename_exclusions
, entry
->new_dir
.buf
);
2539 output(opt
, 1, _("WARNING: Avoiding applying %s -> %s rename "
2540 "to %s, because %s itself was renamed."),
2541 entry
->dir
, entry
->new_dir
.buf
, path
, entry
->new_dir
.buf
);
2543 new_path
= handle_path_level_conflicts(opt
, path
, entry
,
2545 *clean_merge
&= (new_path
!= NULL
);
2551 static void apply_directory_rename_modifications(struct merge_options
*opt
,
2552 struct diff_filepair
*pair
,
2556 struct tree
*o_tree
,
2557 struct tree
*a_tree
,
2558 struct tree
*b_tree
,
2559 struct string_list
*entries
)
2561 struct string_list_item
*item
;
2562 int stage
= (tree
== a_tree
? 2 : 3);
2566 * In all cases where we can do directory rename detection,
2567 * unpack_trees() will have read pair->two->path into the
2568 * index and the working copy. We need to remove it so that
2569 * we can instead place it at new_path. It is guaranteed to
2570 * not be untracked (unpack_trees() would have errored out
2571 * saying the file would have been overwritten), but it might
2574 update_wd
= !was_dirty(opt
, pair
->two
->path
);
2576 output(opt
, 1, _("Refusing to lose dirty file at %s"),
2578 remove_file(opt
, 1, pair
->two
->path
, !update_wd
);
2580 /* Find or create a new re->dst_entry */
2581 item
= string_list_lookup(entries
, new_path
);
2584 * Since we're renaming on this side of history, and it's
2585 * due to a directory rename on the other side of history
2586 * (which we only allow when the directory in question no
2587 * longer exists on the other side of history), the
2588 * original entry for re->dst_entry is no longer
2591 re
->dst_entry
->processed
= 1;
2594 * ...because we'll be using this new one.
2596 re
->dst_entry
= item
->util
;
2599 * re->dst_entry is for the before-dir-rename path, and we
2600 * need it to hold information for the after-dir-rename
2601 * path. Before creating a new entry, we need to mark the
2602 * old one as unnecessary (...unless it is shared by
2603 * src_entry, i.e. this didn't use to be a rename, in which
2604 * case we can just allow the normal processing to happen
2607 if (pair
->status
== 'R')
2608 re
->dst_entry
->processed
= 1;
2610 re
->dst_entry
= insert_stage_data(opt
->repo
, new_path
,
2611 o_tree
, a_tree
, b_tree
,
2613 item
= string_list_insert(entries
, new_path
);
2614 item
->util
= re
->dst_entry
;
2618 * Update the stage_data with the information about the path we are
2619 * moving into place. That slot will be empty and available for us
2620 * to write to because of the collision checks in
2621 * handle_path_level_conflicts(). In other words,
2622 * re->dst_entry->stages[stage].oid will be the null_oid, so it's
2623 * open for us to write to.
2625 * It may be tempting to actually update the index at this point as
2626 * well, using update_stages_for_stage_data(), but as per the big
2627 * "NOTE" in update_stages(), doing so will modify the current
2628 * in-memory index which will break calls to would_lose_untracked()
2629 * that we need to make. Instead, we need to just make sure that
2630 * the various handle_rename_*() functions update the index
2631 * explicitly rather than relying on unpack_trees() to have done it.
2633 get_tree_entry(opt
->repo
,
2636 &re
->dst_entry
->stages
[stage
].oid
,
2637 &re
->dst_entry
->stages
[stage
].mode
);
2640 * Record the original change status (or 'type' of change). If it
2641 * was originally an add ('A'), this lets us differentiate later
2642 * between a RENAME_DELETE conflict and RENAME_VIA_DIR (they
2643 * otherwise look the same). If it was originally a rename ('R'),
2644 * this lets us remember and report accurately about the transitive
2645 * renaming that occurred via the directory rename detection. Also,
2646 * record the original destination name.
2648 re
->dir_rename_original_type
= pair
->status
;
2649 re
->dir_rename_original_dest
= pair
->two
->path
;
2652 * We don't actually look at pair->status again, but it seems
2653 * pedagogically correct to adjust it.
2658 * Finally, record the new location.
2660 pair
->two
->path
= new_path
;
2664 * Get information of all renames which occurred in 'pairs', making use of
2665 * any implicit directory renames inferred from the other side of history.
2666 * We need the three trees in the merge ('o_tree', 'a_tree' and 'b_tree')
2667 * to be able to associate the correct cache entries with the rename
2668 * information; tree is always equal to either a_tree or b_tree.
2670 static struct string_list
*get_renames(struct merge_options
*opt
,
2672 struct diff_queue_struct
*pairs
,
2673 struct hashmap
*dir_renames
,
2674 struct hashmap
*dir_rename_exclusions
,
2676 struct tree
*o_tree
,
2677 struct tree
*a_tree
,
2678 struct tree
*b_tree
,
2679 struct string_list
*entries
,
2683 struct hashmap collisions
;
2684 struct hashmap_iter iter
;
2685 struct collision_entry
*e
;
2686 struct string_list
*renames
;
2688 compute_collisions(&collisions
, dir_renames
, pairs
);
2689 CALLOC_ARRAY(renames
, 1);
2691 for (i
= 0; i
< pairs
->nr
; ++i
) {
2692 struct string_list_item
*item
;
2694 struct diff_filepair
*pair
= pairs
->queue
[i
];
2695 char *new_path
; /* non-NULL only with directory renames */
2697 if (pair
->status
!= 'A' && pair
->status
!= 'R') {
2698 diff_free_filepair(pair
);
2701 new_path
= check_for_directory_rename(opt
, pair
->two
->path
, tree
,
2703 dir_rename_exclusions
,
2706 if (pair
->status
!= 'R' && !new_path
) {
2707 diff_free_filepair(pair
);
2711 re
= xmalloc(sizeof(*re
));
2714 re
->branch
= branch
;
2715 re
->dir_rename_original_type
= '\0';
2716 re
->dir_rename_original_dest
= NULL
;
2717 item
= string_list_lookup(entries
, re
->pair
->one
->path
);
2719 re
->src_entry
= insert_stage_data(opt
->repo
,
2720 re
->pair
->one
->path
,
2721 o_tree
, a_tree
, b_tree
, entries
);
2723 re
->src_entry
= item
->util
;
2725 item
= string_list_lookup(entries
, re
->pair
->two
->path
);
2727 re
->dst_entry
= insert_stage_data(opt
->repo
,
2728 re
->pair
->two
->path
,
2729 o_tree
, a_tree
, b_tree
, entries
);
2731 re
->dst_entry
= item
->util
;
2732 item
= string_list_insert(renames
, pair
->one
->path
);
2735 apply_directory_rename_modifications(opt
, pair
, new_path
,
2741 hashmap_for_each_entry(&collisions
, &iter
, e
,
2742 ent
/* member name */) {
2743 free(e
->target_file
);
2744 string_list_clear(&e
->source_files
, 0);
2746 hashmap_clear_and_free(&collisions
, struct collision_entry
, ent
);
2750 static int process_renames(struct merge_options
*opt
,
2751 struct string_list
*a_renames
,
2752 struct string_list
*b_renames
)
2754 int clean_merge
= 1, i
, j
;
2755 struct string_list a_by_dst
= STRING_LIST_INIT_NODUP
;
2756 struct string_list b_by_dst
= STRING_LIST_INIT_NODUP
;
2757 const struct rename
*sre
;
2760 * FIXME: As string-list.h notes, it's O(n^2) to build a sorted
2761 * string_list one-by-one, but O(n log n) to build it unsorted and
2762 * then sort it. Note that as we build the list, we do not need to
2763 * check if the existing destination path is already in the list,
2764 * because the structure of diffcore_rename guarantees we won't
2767 for (i
= 0; i
< a_renames
->nr
; i
++) {
2768 sre
= a_renames
->items
[i
].util
;
2769 string_list_insert(&a_by_dst
, sre
->pair
->two
->path
)->util
2772 for (i
= 0; i
< b_renames
->nr
; i
++) {
2773 sre
= b_renames
->items
[i
].util
;
2774 string_list_insert(&b_by_dst
, sre
->pair
->two
->path
)->util
2778 for (i
= 0, j
= 0; i
< a_renames
->nr
|| j
< b_renames
->nr
;) {
2779 struct string_list
*renames1
, *renames2Dst
;
2780 struct rename
*ren1
= NULL
, *ren2
= NULL
;
2781 const char *ren1_src
, *ren1_dst
;
2782 struct string_list_item
*lookup
;
2784 if (i
>= a_renames
->nr
) {
2785 ren2
= b_renames
->items
[j
++].util
;
2786 } else if (j
>= b_renames
->nr
) {
2787 ren1
= a_renames
->items
[i
++].util
;
2789 int compare
= strcmp(a_renames
->items
[i
].string
,
2790 b_renames
->items
[j
].string
);
2792 ren1
= a_renames
->items
[i
++].util
;
2794 ren2
= b_renames
->items
[j
++].util
;
2797 /* TODO: refactor, so that 1/2 are not needed */
2799 renames1
= a_renames
;
2800 renames2Dst
= &b_by_dst
;
2802 renames1
= b_renames
;
2803 renames2Dst
= &a_by_dst
;
2807 if (ren1
->processed
)
2809 ren1
->processed
= 1;
2810 ren1
->dst_entry
->processed
= 1;
2811 /* BUG: We should only mark src_entry as processed if we
2812 * are not dealing with a rename + add-source case.
2814 ren1
->src_entry
->processed
= 1;
2816 ren1_src
= ren1
->pair
->one
->path
;
2817 ren1_dst
= ren1
->pair
->two
->path
;
2820 /* One file renamed on both sides */
2821 const char *ren2_src
= ren2
->pair
->one
->path
;
2822 const char *ren2_dst
= ren2
->pair
->two
->path
;
2823 enum rename_type rename_type
;
2824 if (strcmp(ren1_src
, ren2_src
) != 0)
2825 BUG("ren1_src != ren2_src");
2826 ren2
->dst_entry
->processed
= 1;
2827 ren2
->processed
= 1;
2828 if (strcmp(ren1_dst
, ren2_dst
) != 0) {
2829 rename_type
= RENAME_ONE_FILE_TO_TWO
;
2832 rename_type
= RENAME_ONE_FILE_TO_ONE
;
2833 /* BUG: We should only remove ren1_src in
2834 * the base stage (think of rename +
2835 * add-source cases).
2837 remove_file(opt
, 1, ren1_src
, 1);
2838 update_entry(ren1
->dst_entry
,
2843 setup_rename_conflict_info(rename_type
, opt
, ren1
, ren2
);
2844 } else if ((lookup
= string_list_lookup(renames2Dst
, ren1_dst
))) {
2845 /* Two different files renamed to the same thing */
2847 ren2
= lookup
->util
;
2848 ren2_dst
= ren2
->pair
->two
->path
;
2849 if (strcmp(ren1_dst
, ren2_dst
) != 0)
2850 BUG("ren1_dst != ren2_dst");
2853 ren2
->processed
= 1;
2855 * BUG: We should only mark src_entry as processed
2856 * if we are not dealing with a rename + add-source
2859 ren2
->src_entry
->processed
= 1;
2861 setup_rename_conflict_info(RENAME_TWO_FILES_TO_ONE
,
2864 /* Renamed in 1, maybe changed in 2 */
2865 /* we only use sha1 and mode of these */
2866 struct diff_filespec src_other
, dst_other
;
2870 * unpack_trees loads entries from common-commit
2871 * into stage 1, from head-commit into stage 2, and
2872 * from merge-commit into stage 3. We keep track
2873 * of which side corresponds to the rename.
2875 int renamed_stage
= a_renames
== renames1
? 2 : 3;
2876 int other_stage
= a_renames
== renames1
? 3 : 2;
2879 * Directory renames have a funny corner case...
2881 int renamed_to_self
= !strcmp(ren1_src
, ren1_dst
);
2883 /* BUG: We should only remove ren1_src in the base
2884 * stage and in other_stage (think of rename +
2887 if (!renamed_to_self
)
2888 remove_file(opt
, 1, ren1_src
,
2889 renamed_stage
== 2 ||
2890 !was_tracked(opt
, ren1_src
));
2892 oidcpy(&src_other
.oid
,
2893 &ren1
->src_entry
->stages
[other_stage
].oid
);
2894 src_other
.mode
= ren1
->src_entry
->stages
[other_stage
].mode
;
2895 oidcpy(&dst_other
.oid
,
2896 &ren1
->dst_entry
->stages
[other_stage
].oid
);
2897 dst_other
.mode
= ren1
->dst_entry
->stages
[other_stage
].mode
;
2900 if (oideq(&src_other
.oid
, null_oid()) &&
2901 ren1
->dir_rename_original_type
== 'A') {
2902 setup_rename_conflict_info(RENAME_VIA_DIR
,
2904 } else if (renamed_to_self
) {
2905 setup_rename_conflict_info(RENAME_NORMAL
,
2907 } else if (oideq(&src_other
.oid
, null_oid())) {
2908 setup_rename_conflict_info(RENAME_DELETE
,
2910 } else if ((dst_other
.mode
== ren1
->pair
->two
->mode
) &&
2911 oideq(&dst_other
.oid
, &ren1
->pair
->two
->oid
)) {
2913 * Added file on the other side identical to
2914 * the file being renamed: clean merge.
2915 * Also, there is no need to overwrite the
2916 * file already in the working copy, so call
2917 * update_file_flags() instead of
2920 if (update_file_flags(opt
,
2923 1, /* update_cache */
2926 } else if (!oideq(&dst_other
.oid
, null_oid())) {
2928 * Probably not a clean merge, but it's
2929 * premature to set clean_merge to 0 here,
2930 * because if the rename merges cleanly and
2931 * the merge exactly matches the newly added
2932 * file, then the merge will be clean.
2934 setup_rename_conflict_info(RENAME_ADD
,
2939 if (clean_merge
< 0)
2940 goto cleanup_and_return
;
2942 struct diff_filespec
*o
, *a
, *b
;
2943 src_other
.path
= (char *)ren1_src
;
2945 o
= ren1
->pair
->one
;
2946 if (a_renames
== renames1
) {
2947 a
= ren1
->pair
->two
;
2950 b
= ren1
->pair
->two
;
2953 update_entry(ren1
->dst_entry
, o
, a
, b
);
2954 setup_rename_conflict_info(RENAME_NORMAL
,
2960 string_list_clear(&a_by_dst
, 0);
2961 string_list_clear(&b_by_dst
, 0);
2966 struct rename_info
{
2967 struct string_list
*head_renames
;
2968 struct string_list
*merge_renames
;
2971 static void initial_cleanup_rename(struct diff_queue_struct
*pairs
,
2972 struct hashmap
*dir_renames
)
2974 struct hashmap_iter iter
;
2975 struct dir_rename_entry
*e
;
2977 hashmap_for_each_entry(dir_renames
, &iter
, e
,
2978 ent
/* member name */) {
2980 strbuf_release(&e
->new_dir
);
2981 /* possible_new_dirs already cleared in get_directory_renames */
2983 hashmap_clear_and_free(dir_renames
, struct dir_rename_entry
, ent
);
2990 static int detect_and_process_renames(struct merge_options
*opt
,
2991 struct tree
*common
,
2994 struct string_list
*entries
,
2995 struct rename_info
*ri
)
2997 struct diff_queue_struct
*head_pairs
, *merge_pairs
;
2998 struct hashmap
*dir_re_head
, *dir_re_merge
;
3001 ri
->head_renames
= NULL
;
3002 ri
->merge_renames
= NULL
;
3004 if (!merge_detect_rename(opt
))
3007 head_pairs
= get_diffpairs(opt
, common
, head
);
3008 merge_pairs
= get_diffpairs(opt
, common
, merge
);
3010 if ((opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_TRUE
) ||
3011 (opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_CONFLICT
&&
3012 !opt
->priv
->call_depth
)) {
3013 dir_re_head
= get_directory_renames(head_pairs
);
3014 dir_re_merge
= get_directory_renames(merge_pairs
);
3016 handle_directory_level_conflicts(opt
,
3018 dir_re_merge
, merge
);
3020 dir_re_head
= xmalloc(sizeof(*dir_re_head
));
3021 dir_re_merge
= xmalloc(sizeof(*dir_re_merge
));
3022 dir_rename_init(dir_re_head
);
3023 dir_rename_init(dir_re_merge
);
3026 ri
->head_renames
= get_renames(opt
, opt
->branch1
, head_pairs
,
3027 dir_re_merge
, dir_re_head
, head
,
3028 common
, head
, merge
, entries
,
3032 ri
->merge_renames
= get_renames(opt
, opt
->branch2
, merge_pairs
,
3033 dir_re_head
, dir_re_merge
, merge
,
3034 common
, head
, merge
, entries
,
3038 clean
&= process_renames(opt
, ri
->head_renames
, ri
->merge_renames
);
3042 * Some cleanup is deferred until cleanup_renames() because the
3043 * data structures are still needed and referenced in
3044 * process_entry(). But there are a few things we can free now.
3046 initial_cleanup_rename(head_pairs
, dir_re_head
);
3047 initial_cleanup_rename(merge_pairs
, dir_re_merge
);
3052 static void final_cleanup_rename(struct string_list
*rename
)
3054 const struct rename
*re
;
3060 for (i
= 0; i
< rename
->nr
; i
++) {
3061 re
= rename
->items
[i
].util
;
3062 diff_free_filepair(re
->pair
);
3063 if (re
->src_entry
->rename_conflict_info_owned
)
3064 FREE_AND_NULL(re
->src_entry
->rename_conflict_info
);
3065 if (re
->dst_entry
->rename_conflict_info_owned
)
3066 FREE_AND_NULL(re
->dst_entry
->rename_conflict_info
);
3068 string_list_clear(rename
, 1);
3072 static void final_cleanup_renames(struct rename_info
*re_info
)
3074 final_cleanup_rename(re_info
->head_renames
);
3075 final_cleanup_rename(re_info
->merge_renames
);
3078 static int read_oid_strbuf(struct merge_options
*opt
,
3079 const struct object_id
*oid
,
3083 enum object_type type
;
3085 buf
= repo_read_object_file(the_repository
, oid
, &type
, &size
);
3087 return err(opt
, _("cannot read object %s"), oid_to_hex(oid
));
3088 if (type
!= OBJ_BLOB
) {
3090 return err(opt
, _("object %s is not a blob"), oid_to_hex(oid
));
3092 strbuf_attach(dst
, buf
, size
, size
+ 1);
3096 static int blob_unchanged(struct merge_options
*opt
,
3097 const struct diff_filespec
*o
,
3098 const struct diff_filespec
*a
,
3099 int renormalize
, const char *path
)
3101 struct strbuf obuf
= STRBUF_INIT
;
3102 struct strbuf abuf
= STRBUF_INIT
;
3103 int ret
= 0; /* assume changed for safety */
3104 struct index_state
*idx
= opt
->repo
->index
;
3106 if (a
->mode
!= o
->mode
)
3108 if (oideq(&o
->oid
, &a
->oid
))
3113 if (read_oid_strbuf(opt
, &o
->oid
, &obuf
) ||
3114 read_oid_strbuf(opt
, &a
->oid
, &abuf
))
3117 * Note: binary | is used so that both renormalizations are
3118 * performed. Comparison can be skipped if both files are
3119 * unchanged since their sha1s have already been compared.
3121 if (renormalize_buffer(idx
, path
, obuf
.buf
, obuf
.len
, &obuf
) |
3122 renormalize_buffer(idx
, path
, abuf
.buf
, abuf
.len
, &abuf
))
3123 ret
= (obuf
.len
== abuf
.len
&& !memcmp(obuf
.buf
, abuf
.buf
, obuf
.len
));
3126 strbuf_release(&obuf
);
3127 strbuf_release(&abuf
);
3131 static int handle_modify_delete(struct merge_options
*opt
,
3133 const struct diff_filespec
*o
,
3134 const struct diff_filespec
*a
,
3135 const struct diff_filespec
*b
)
3137 const char *modify_branch
, *delete_branch
;
3138 const struct diff_filespec
*changed
;
3141 modify_branch
= opt
->branch1
;
3142 delete_branch
= opt
->branch2
;
3145 modify_branch
= opt
->branch2
;
3146 delete_branch
= opt
->branch1
;
3150 return handle_change_delete(opt
,
3153 modify_branch
, delete_branch
,
3154 _("modify"), _("modified"));
3157 static int handle_content_merge(struct merge_file_info
*mfi
,
3158 struct merge_options
*opt
,
3161 const struct diff_filespec
*o
,
3162 const struct diff_filespec
*a
,
3163 const struct diff_filespec
*b
,
3164 struct rename_conflict_info
*ci
)
3166 const char *reason
= _("content");
3167 unsigned df_conflict_remains
= 0;
3170 reason
= _("add/add");
3172 assert(o
->path
&& a
->path
&& b
->path
);
3173 if (ci
&& dir_in_way(opt
->repo
->index
, path
, !opt
->priv
->call_depth
,
3174 S_ISGITLINK(ci
->ren1
->pair
->two
->mode
)))
3175 df_conflict_remains
= 1;
3177 if (merge_mode_and_contents(opt
, o
, a
, b
, path
,
3178 opt
->branch1
, opt
->branch2
,
3179 opt
->priv
->call_depth
* 2, mfi
))
3183 * We can skip updating the working tree file iff:
3184 * a) The merge is clean
3185 * b) The merge matches what was in HEAD (content, mode, pathname)
3186 * c) The target path is usable (i.e. not involved in D/F conflict)
3188 if (mfi
->clean
&& was_tracked_and_matches(opt
, path
, &mfi
->blob
) &&
3189 !df_conflict_remains
) {
3191 struct cache_entry
*ce
;
3193 output(opt
, 3, _("Skipped %s (merged same as existing)"), path
);
3194 if (add_cacheinfo(opt
, &mfi
->blob
, path
,
3195 0, (!opt
->priv
->call_depth
&& !is_dirty
), 0))
3198 * However, add_cacheinfo() will delete the old cache entry
3199 * and add a new one. We need to copy over any skip_worktree
3200 * flag to avoid making the file appear as if it were
3201 * deleted by the user.
3203 pos
= index_name_pos(&opt
->priv
->orig_index
, path
, strlen(path
));
3204 ce
= opt
->priv
->orig_index
.cache
[pos
];
3205 if (ce_skip_worktree(ce
)) {
3206 pos
= index_name_pos(opt
->repo
->index
, path
, strlen(path
));
3207 ce
= opt
->repo
->index
->cache
[pos
];
3208 ce
->ce_flags
|= CE_SKIP_WORKTREE
;
3214 if (S_ISGITLINK(mfi
->blob
.mode
))
3215 reason
= _("submodule");
3216 output(opt
, 1, _("CONFLICT (%s): Merge conflict in %s"),
3218 if (ci
&& !df_conflict_remains
)
3219 if (update_stages(opt
, path
, o
, a
, b
))
3223 if (df_conflict_remains
|| is_dirty
) {
3225 if (opt
->priv
->call_depth
) {
3226 remove_file_from_index(opt
->repo
->index
, path
);
3229 if (update_stages(opt
, path
, o
, a
, b
))
3232 int file_from_stage2
= was_tracked(opt
, path
);
3234 if (update_stages(opt
, path
, NULL
,
3235 file_from_stage2
? &mfi
->blob
: NULL
,
3236 file_from_stage2
? NULL
: &mfi
->blob
))
3241 new_path
= unique_path(opt
, path
, ci
->ren1
->branch
);
3243 output(opt
, 1, _("Refusing to lose dirty file at %s"),
3246 output(opt
, 1, _("Adding as %s instead"), new_path
);
3247 if (update_file(opt
, 0, &mfi
->blob
, new_path
)) {
3253 } else if (update_file(opt
, mfi
->clean
, &mfi
->blob
, path
))
3255 return !is_dirty
&& mfi
->clean
;
3258 static int handle_rename_normal(struct merge_options
*opt
,
3260 const struct diff_filespec
*o
,
3261 const struct diff_filespec
*a
,
3262 const struct diff_filespec
*b
,
3263 struct rename_conflict_info
*ci
)
3265 struct rename
*ren
= ci
->ren1
;
3266 struct merge_file_info mfi
;
3269 /* Merge the content and write it out */
3270 clean
= handle_content_merge(&mfi
, opt
, path
, was_dirty(opt
, path
),
3274 opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_CONFLICT
&&
3275 ren
->dir_rename_original_dest
) {
3276 if (update_stages(opt
, path
,
3277 &mfi
.blob
, &mfi
.blob
, &mfi
.blob
))
3279 clean
= 0; /* not clean, but conflicted */
3284 static void dir_rename_warning(const char *msg
,
3287 struct merge_options
*opt
,
3290 const char *other_branch
;
3291 other_branch
= (ren
->branch
== opt
->branch1
?
3292 opt
->branch2
: opt
->branch1
);
3294 output(opt
, clean
? 2 : 1, msg
,
3295 ren
->pair
->one
->path
, ren
->branch
,
3296 other_branch
, ren
->pair
->two
->path
);
3299 output(opt
, clean
? 2 : 1, msg
,
3300 ren
->pair
->one
->path
, ren
->dir_rename_original_dest
, ren
->branch
,
3301 other_branch
, ren
->pair
->two
->path
);
3303 static int warn_about_dir_renamed_entries(struct merge_options
*opt
,
3307 int clean
= 1, is_add
;
3312 /* Return early if ren was not affected/created by a directory rename */
3313 if (!ren
->dir_rename_original_dest
)
3317 assert(opt
->detect_directory_renames
> MERGE_DIRECTORY_RENAMES_NONE
);
3318 assert(ren
->dir_rename_original_type
== 'A' ||
3319 ren
->dir_rename_original_type
== 'R');
3321 /* Check whether to treat directory renames as a conflict */
3322 clean
= (opt
->detect_directory_renames
== MERGE_DIRECTORY_RENAMES_TRUE
);
3324 is_add
= (ren
->dir_rename_original_type
== 'A');
3325 if (ren
->dir_rename_original_type
== 'A' && clean
) {
3326 msg
= _("Path updated: %s added in %s inside a "
3327 "directory that was renamed in %s; moving it to %s.");
3328 } else if (ren
->dir_rename_original_type
== 'A' && !clean
) {
3329 msg
= _("CONFLICT (file location): %s added in %s "
3330 "inside a directory that was renamed in %s, "
3331 "suggesting it should perhaps be moved to %s.");
3332 } else if (ren
->dir_rename_original_type
== 'R' && clean
) {
3333 msg
= _("Path updated: %s renamed to %s in %s, inside a "
3334 "directory that was renamed in %s; moving it to %s.");
3335 } else if (ren
->dir_rename_original_type
== 'R' && !clean
) {
3336 msg
= _("CONFLICT (file location): %s renamed to %s in %s, "
3337 "inside a directory that was renamed in %s, "
3338 "suggesting it should perhaps be moved to %s.");
3340 BUG("Impossible dir_rename_original_type/clean combination");
3342 dir_rename_warning(msg
, is_add
, clean
, opt
, ren
);
3347 /* Per entry merge function */
3348 static int process_entry(struct merge_options
*opt
,
3349 const char *path
, struct stage_data
*entry
)
3351 int clean_merge
= 1;
3352 int normalize
= opt
->renormalize
;
3354 struct diff_filespec
*o
= &entry
->stages
[1];
3355 struct diff_filespec
*a
= &entry
->stages
[2];
3356 struct diff_filespec
*b
= &entry
->stages
[3];
3357 int o_valid
= is_valid(o
);
3358 int a_valid
= is_valid(a
);
3359 int b_valid
= is_valid(b
);
3360 o
->path
= a
->path
= b
->path
= (char*)path
;
3362 entry
->processed
= 1;
3363 if (entry
->rename_conflict_info
) {
3364 struct rename_conflict_info
*ci
= entry
->rename_conflict_info
;
3365 struct diff_filespec
*temp
;
3368 path_clean
= warn_about_dir_renamed_entries(opt
, ci
->ren1
);
3369 path_clean
&= warn_about_dir_renamed_entries(opt
, ci
->ren2
);
3372 * For cases with a single rename, {o,a,b}->path have all been
3373 * set to the rename target path; we need to set two of these
3374 * back to the rename source.
3375 * For rename/rename conflicts, we'll manually fix paths below.
3377 temp
= (opt
->branch1
== ci
->ren1
->branch
) ? b
: a
;
3378 o
->path
= temp
->path
= ci
->ren1
->pair
->one
->path
;
3380 assert(opt
->branch1
== ci
->ren1
->branch
);
3383 switch (ci
->rename_type
) {
3385 case RENAME_ONE_FILE_TO_ONE
:
3386 clean_merge
= handle_rename_normal(opt
, path
, o
, a
, b
,
3389 case RENAME_VIA_DIR
:
3390 clean_merge
= handle_rename_via_dir(opt
, ci
);
3394 * Probably unclean merge, but if the renamed file
3395 * merges cleanly and the result can then be
3396 * two-way merged cleanly with the added file, I
3397 * guess it's a clean merge?
3399 clean_merge
= handle_rename_add(opt
, ci
);
3403 if (handle_rename_delete(opt
, ci
))
3406 case RENAME_ONE_FILE_TO_TWO
:
3408 * Manually fix up paths; note:
3409 * ren[12]->pair->one->path are equal.
3411 o
->path
= ci
->ren1
->pair
->one
->path
;
3412 a
->path
= ci
->ren1
->pair
->two
->path
;
3413 b
->path
= ci
->ren2
->pair
->two
->path
;
3416 if (handle_rename_rename_1to2(opt
, ci
))
3419 case RENAME_TWO_FILES_TO_ONE
:
3421 * Manually fix up paths; note,
3422 * ren[12]->pair->two->path are actually equal.
3425 a
->path
= ci
->ren1
->pair
->two
->path
;
3426 b
->path
= ci
->ren2
->pair
->two
->path
;
3429 * Probably unclean merge, but if the two renamed
3430 * files merge cleanly and the two resulting files
3431 * can then be two-way merged cleanly, I guess it's
3434 clean_merge
= handle_rename_rename_2to1(opt
, ci
);
3437 entry
->processed
= 0;
3440 if (path_clean
< clean_merge
)
3441 clean_merge
= path_clean
;
3442 } else if (o_valid
&& (!a_valid
|| !b_valid
)) {
3443 /* Case A: Deleted in one */
3444 if ((!a_valid
&& !b_valid
) ||
3445 (!b_valid
&& blob_unchanged(opt
, o
, a
, normalize
, path
)) ||
3446 (!a_valid
&& blob_unchanged(opt
, o
, b
, normalize
, path
))) {
3447 /* Deleted in both or deleted in one and
3448 * unchanged in the other */
3450 output(opt
, 2, _("Removing %s"), path
);
3451 /* do not touch working file if it did not exist */
3452 remove_file(opt
, 1, path
, !a_valid
);
3454 /* Modify/delete; deleted side may have put a directory in the way */
3456 if (handle_modify_delete(opt
, path
, o
, a
, b
))
3459 } else if ((!o_valid
&& a_valid
&& !b_valid
) ||
3460 (!o_valid
&& !a_valid
&& b_valid
)) {
3461 /* Case B: Added in one. */
3462 /* [nothing|directory] -> ([nothing|directory], file) */
3464 const char *add_branch
;
3465 const char *other_branch
;
3467 const struct diff_filespec
*contents
;
3470 add_branch
= opt
->branch1
;
3471 other_branch
= opt
->branch2
;
3473 conf
= _("file/directory");
3475 add_branch
= opt
->branch2
;
3476 other_branch
= opt
->branch1
;
3478 conf
= _("directory/file");
3480 if (dir_in_way(opt
->repo
->index
, path
,
3481 !opt
->priv
->call_depth
&& !S_ISGITLINK(a
->mode
),
3483 char *new_path
= unique_path(opt
, path
, add_branch
);
3485 output(opt
, 1, _("CONFLICT (%s): There is a directory with name %s in %s. "
3487 conf
, path
, other_branch
, path
, new_path
);
3488 if (update_file(opt
, 0, contents
, new_path
))
3490 else if (opt
->priv
->call_depth
)
3491 remove_file_from_index(opt
->repo
->index
, path
);
3494 output(opt
, 2, _("Adding %s"), path
);
3495 /* do not overwrite file if already present */
3496 if (update_file_flags(opt
, contents
, path
, 1, !a_valid
))
3499 } else if (a_valid
&& b_valid
) {
3501 /* Case C: Added in both (check for same permissions) */
3503 _("CONFLICT (add/add): Merge conflict in %s"),
3505 clean_merge
= handle_file_collision(opt
,
3511 /* case D: Modified in both, but differently. */
3512 struct merge_file_info mfi
;
3513 int is_dirty
= 0; /* unpack_trees would have bailed if dirty */
3514 clean_merge
= handle_content_merge(&mfi
, opt
, path
,
3518 } else if (!o_valid
&& !a_valid
&& !b_valid
) {
3520 * this entry was deleted altogether. a_mode == 0 means
3521 * we had that path and want to actively remove it.
3523 remove_file(opt
, 1, path
, !a
->mode
);
3525 BUG("fatal merge failure, shouldn't happen.");
3530 static int merge_trees_internal(struct merge_options
*opt
,
3533 struct tree
*merge_base
,
3534 struct tree
**result
)
3536 struct index_state
*istate
= opt
->repo
->index
;
3539 if (opt
->subtree_shift
) {
3540 merge
= shift_tree_object(opt
->repo
, head
, merge
,
3541 opt
->subtree_shift
);
3542 merge_base
= shift_tree_object(opt
->repo
, head
, merge_base
,
3543 opt
->subtree_shift
);
3546 if (oideq(&merge_base
->object
.oid
, &merge
->object
.oid
)) {
3547 output(opt
, 0, _("Already up to date."));
3552 code
= unpack_trees_start(opt
, merge_base
, head
, merge
);
3555 if (show(opt
, 4) || opt
->priv
->call_depth
)
3556 err(opt
, _("merging of trees %s and %s failed"),
3557 oid_to_hex(&head
->object
.oid
),
3558 oid_to_hex(&merge
->object
.oid
));
3559 unpack_trees_finish(opt
);
3563 if (unmerged_index(istate
)) {
3564 struct string_list
*entries
;
3565 struct rename_info re_info
;
3568 * Only need the hashmap while processing entries, so
3569 * initialize it here and free it when we are done running
3570 * through the entries. Keeping it in the merge_options as
3571 * opposed to decaring a local hashmap is for convenience
3572 * so that we don't have to pass it to around.
3574 hashmap_init(&opt
->priv
->current_file_dir_set
, path_hashmap_cmp
,
3576 get_files_dirs(opt
, head
);
3577 get_files_dirs(opt
, merge
);
3579 entries
= get_unmerged(opt
->repo
->index
);
3580 clean
= detect_and_process_renames(opt
, merge_base
, head
, merge
,
3582 record_df_conflict_files(opt
, entries
);
3585 for (i
= entries
->nr
-1; 0 <= i
; i
--) {
3586 const char *path
= entries
->items
[i
].string
;
3587 struct stage_data
*e
= entries
->items
[i
].util
;
3588 if (!e
->processed
) {
3589 int ret
= process_entry(opt
, path
, e
);
3598 for (i
= 0; i
< entries
->nr
; i
++) {
3599 struct stage_data
*e
= entries
->items
[i
].util
;
3601 BUG("unprocessed path??? %s",
3602 entries
->items
[i
].string
);
3606 final_cleanup_renames(&re_info
);
3608 string_list_clear(entries
, 1);
3611 hashmap_clear_and_free(&opt
->priv
->current_file_dir_set
,
3612 struct path_hashmap_entry
, e
);
3615 unpack_trees_finish(opt
);
3622 unpack_trees_finish(opt
);
3624 if (opt
->priv
->call_depth
&&
3625 !(*result
= write_in_core_index_as_tree(opt
->repo
)))
3632 * Merge the commits h1 and h2, returning a flag (int) indicating the
3633 * cleanness of the merge. Also, if opt->priv->call_depth, create a
3634 * virtual commit and write its location to *result.
3636 static int merge_recursive_internal(struct merge_options
*opt
,
3639 const struct commit_list
*_merge_bases
,
3640 struct commit
**result
)
3642 struct commit_list
*merge_bases
= copy_commit_list(_merge_bases
);
3643 struct commit_list
*iter
;
3644 struct commit
*merged_merge_bases
;
3645 struct tree
*result_tree
;
3646 const char *ancestor_name
;
3647 struct strbuf merge_base_abbrev
= STRBUF_INIT
;
3651 output(opt
, 4, _("Merging:"));
3652 output_commit_title(opt
, h1
);
3653 output_commit_title(opt
, h2
);
3657 if (repo_get_merge_bases(the_repository
, h1
, h2
,
3658 &merge_bases
) < 0) {
3662 merge_bases
= reverse_commit_list(merge_bases
);
3666 unsigned cnt
= commit_list_count(merge_bases
);
3668 output(opt
, 5, Q_("found %u common ancestor:",
3669 "found %u common ancestors:", cnt
), cnt
);
3670 for (iter
= merge_bases
; iter
; iter
= iter
->next
)
3671 output_commit_title(opt
, iter
->item
);
3674 merged_merge_bases
= pop_commit(&merge_bases
);
3675 if (!merged_merge_bases
) {
3676 /* if there is no common ancestor, use an empty tree */
3679 tree
= lookup_tree(opt
->repo
, opt
->repo
->hash_algo
->empty_tree
);
3680 merged_merge_bases
= make_virtual_commit(opt
->repo
, tree
,
3682 ancestor_name
= "empty tree";
3683 } else if (opt
->ancestor
&& !opt
->priv
->call_depth
) {
3684 ancestor_name
= opt
->ancestor
;
3685 } else if (merge_bases
) {
3686 ancestor_name
= "merged common ancestors";
3688 strbuf_add_unique_abbrev(&merge_base_abbrev
,
3689 &merged_merge_bases
->object
.oid
,
3691 ancestor_name
= merge_base_abbrev
.buf
;
3694 for (iter
= merge_bases
; iter
; iter
= iter
->next
) {
3695 const char *saved_b1
, *saved_b2
;
3696 opt
->priv
->call_depth
++;
3698 * When the merge fails, the result contains files
3699 * with conflict markers. The cleanness flag is
3700 * ignored (unless indicating an error), it was never
3701 * actually used, as result of merge_trees has always
3702 * overwritten it: the committed "conflicts" were
3705 discard_index(opt
->repo
->index
);
3706 saved_b1
= opt
->branch1
;
3707 saved_b2
= opt
->branch2
;
3708 opt
->branch1
= "Temporary merge branch 1";
3709 opt
->branch2
= "Temporary merge branch 2";
3710 if (merge_recursive_internal(opt
, merged_merge_bases
, iter
->item
,
3711 NULL
, &merged_merge_bases
) < 0) {
3715 opt
->branch1
= saved_b1
;
3716 opt
->branch2
= saved_b2
;
3717 opt
->priv
->call_depth
--;
3719 if (!merged_merge_bases
) {
3720 ret
= err(opt
, _("merge returned no commit"));
3726 * FIXME: Since merge_recursive_internal() is only ever called by
3727 * places that ensure the index is loaded first
3728 * (e.g. builtin/merge.c, rebase/sequencer, etc.), in the common
3729 * case where the merge base was unique that means when we get here
3730 * we immediately discard the index and re-read it, which is a
3731 * complete waste of time. We should only be discarding and
3732 * re-reading if we were forced to recurse.
3734 discard_index(opt
->repo
->index
);
3735 if (!opt
->priv
->call_depth
)
3736 repo_read_index(opt
->repo
);
3738 opt
->ancestor
= ancestor_name
;
3739 ret
= merge_trees_internal(opt
,
3740 repo_get_commit_tree(opt
->repo
, h1
),
3741 repo_get_commit_tree(opt
->repo
, h2
),
3742 repo_get_commit_tree(opt
->repo
,
3743 merged_merge_bases
),
3745 opt
->ancestor
= NULL
; /* avoid accidental re-use of opt->ancestor */
3751 if (opt
->priv
->call_depth
) {
3752 *result
= make_virtual_commit(opt
->repo
, result_tree
,
3754 commit_list_insert(h1
, &(*result
)->parents
);
3755 commit_list_insert(h2
, &(*result
)->parents
->next
);
3759 strbuf_release(&merge_base_abbrev
);
3760 free_commit_list(merge_bases
);
3764 static int merge_start(struct merge_options
*opt
, struct tree
*head
)
3766 struct strbuf sb
= STRBUF_INIT
;
3768 /* Sanity checks on opt */
3771 assert(opt
->branch1
&& opt
->branch2
);
3773 assert(opt
->detect_renames
>= -1 &&
3774 opt
->detect_renames
<= DIFF_DETECT_COPY
);
3775 assert(opt
->detect_directory_renames
>= MERGE_DIRECTORY_RENAMES_NONE
&&
3776 opt
->detect_directory_renames
<= MERGE_DIRECTORY_RENAMES_TRUE
);
3777 assert(opt
->rename_limit
>= -1);
3778 assert(opt
->rename_score
>= 0 && opt
->rename_score
<= MAX_SCORE
);
3779 assert(opt
->show_rename_progress
>= 0 && opt
->show_rename_progress
<= 1);
3781 assert(opt
->xdl_opts
>= 0);
3782 assert(opt
->recursive_variant
>= MERGE_VARIANT_NORMAL
&&
3783 opt
->recursive_variant
<= MERGE_VARIANT_THEIRS
);
3785 assert(opt
->verbosity
>= 0 && opt
->verbosity
<= 5);
3786 assert(opt
->buffer_output
<= 2);
3787 assert(opt
->obuf
.len
== 0);
3789 assert(opt
->priv
== NULL
);
3791 /* Not supported; option specific to merge-ort */
3792 assert(!opt
->record_conflict_msgs_as_headers
);
3793 assert(!opt
->msg_header_prefix
);
3795 /* Sanity check on repo state; index must match head */
3796 if (repo_index_has_changes(opt
->repo
, head
, &sb
)) {
3797 err(opt
, _("Your local changes to the following files would be overwritten by merge:\n %s"),
3799 strbuf_release(&sb
);
3803 CALLOC_ARRAY(opt
->priv
, 1);
3804 string_list_init_dup(&opt
->priv
->df_conflict_file_set
);
3808 static void merge_finalize(struct merge_options
*opt
)
3811 if (!opt
->priv
->call_depth
&& opt
->buffer_output
< 2)
3812 strbuf_release(&opt
->obuf
);
3814 diff_warn_rename_limit("merge.renamelimit",
3815 opt
->priv
->needed_rename_limit
, 0);
3816 hashmap_clear_and_free(&opt
->priv
->current_file_dir_set
,
3817 struct path_hashmap_entry
, e
);
3818 string_list_clear(&opt
->priv
->df_conflict_file_set
, 0);
3819 FREE_AND_NULL(opt
->priv
);
3822 int merge_trees(struct merge_options
*opt
,
3825 struct tree
*merge_base
)
3828 struct tree
*ignored
;
3830 assert(opt
->ancestor
!= NULL
);
3832 if (merge_start(opt
, head
))
3834 clean
= merge_trees_internal(opt
, head
, merge
, merge_base
, &ignored
);
3835 merge_finalize(opt
);
3840 int merge_recursive(struct merge_options
*opt
,
3843 const struct commit_list
*merge_bases
,
3844 struct commit
**result
)
3848 assert(opt
->ancestor
== NULL
||
3849 !strcmp(opt
->ancestor
, "constructed merge base"));
3851 prepare_repo_settings(opt
->repo
);
3852 opt
->repo
->settings
.command_requires_full_index
= 1;
3854 if (merge_start(opt
, repo_get_commit_tree(opt
->repo
, h1
)))
3856 clean
= merge_recursive_internal(opt
, h1
, h2
, merge_bases
, result
);
3857 merge_finalize(opt
);
3862 static struct commit
*get_ref(struct repository
*repo
,
3863 const struct object_id
*oid
,
3866 struct object
*object
;
3868 object
= deref_tag(repo
, parse_object(repo
, oid
),
3869 name
, strlen(name
));
3872 if (object
->type
== OBJ_TREE
)
3873 return make_virtual_commit(repo
, (struct tree
*)object
, name
);
3874 if (object
->type
!= OBJ_COMMIT
)
3876 if (repo_parse_commit(repo
, (struct commit
*)object
))
3878 return (struct commit
*)object
;
3881 int merge_recursive_generic(struct merge_options
*opt
,
3882 const struct object_id
*head
,
3883 const struct object_id
*merge
,
3884 int num_merge_bases
,
3885 const struct object_id
*merge_bases
,
3886 struct commit
**result
)
3889 struct lock_file lock
= LOCK_INIT
;
3890 struct commit
*head_commit
= get_ref(opt
->repo
, head
, opt
->branch1
);
3891 struct commit
*next_commit
= get_ref(opt
->repo
, merge
, opt
->branch2
);
3892 struct commit_list
*ca
= NULL
;
3896 for (i
= 0; i
< num_merge_bases
; ++i
) {
3897 struct commit
*base
;
3898 if (!(base
= get_ref(opt
->repo
, &merge_bases
[i
],
3899 oid_to_hex(&merge_bases
[i
]))))
3900 return err(opt
, _("Could not parse object '%s'"),
3901 oid_to_hex(&merge_bases
[i
]));
3902 commit_list_insert(base
, &ca
);
3904 if (num_merge_bases
== 1)
3905 opt
->ancestor
= "constructed merge base";
3908 repo_hold_locked_index(opt
->repo
, &lock
, LOCK_DIE_ON_ERROR
);
3909 clean
= merge_recursive(opt
, head_commit
, next_commit
, ca
,
3911 free_commit_list(ca
);
3913 rollback_lock_file(&lock
);
3917 if (write_locked_index(opt
->repo
->index
, &lock
,
3918 COMMIT_LOCK
| SKIP_IF_UNCHANGED
))
3919 return err(opt
, _("Unable to write index."));
3921 return clean
? 0 : 1;
3924 static void merge_recursive_config(struct merge_options
*opt
, int ui
)
3927 int renormalize
= 0;
3928 git_config_get_int("merge.verbosity", &opt
->verbosity
);
3929 git_config_get_int("diff.renamelimit", &opt
->rename_limit
);
3930 git_config_get_int("merge.renamelimit", &opt
->rename_limit
);
3931 git_config_get_bool("merge.renormalize", &renormalize
);
3932 opt
->renormalize
= renormalize
;
3933 if (!git_config_get_string("diff.renames", &value
)) {
3934 opt
->detect_renames
= git_config_rename("diff.renames", value
);
3937 if (!git_config_get_string("merge.renames", &value
)) {
3938 opt
->detect_renames
= git_config_rename("merge.renames", value
);
3941 if (!git_config_get_string("merge.directoryrenames", &value
)) {
3942 int boolval
= git_parse_maybe_bool(value
);
3944 opt
->detect_directory_renames
= boolval
?
3945 MERGE_DIRECTORY_RENAMES_TRUE
:
3946 MERGE_DIRECTORY_RENAMES_NONE
;
3947 } else if (!strcasecmp(value
, "conflict")) {
3948 opt
->detect_directory_renames
=
3949 MERGE_DIRECTORY_RENAMES_CONFLICT
;
3950 } /* avoid erroring on values from future versions of git */
3954 if (!git_config_get_string("diff.algorithm", &value
)) {
3955 long diff_algorithm
= parse_algorithm_value(value
);
3956 if (diff_algorithm
< 0)
3957 die(_("unknown value for config '%s': %s"), "diff.algorithm", value
);
3958 opt
->xdl_opts
= (opt
->xdl_opts
& ~XDF_DIFF_ALGORITHM_MASK
) | diff_algorithm
;
3962 git_config(git_xmerge_config
, NULL
);
3965 static void init_merge_options(struct merge_options
*opt
,
3966 struct repository
*repo
, int ui
)
3968 const char *merge_verbosity
;
3969 memset(opt
, 0, sizeof(struct merge_options
));
3973 opt
->detect_renames
= -1;
3974 opt
->detect_directory_renames
= MERGE_DIRECTORY_RENAMES_CONFLICT
;
3975 opt
->rename_limit
= -1;
3978 opt
->buffer_output
= 1;
3979 strbuf_init(&opt
->obuf
, 0);
3981 opt
->renormalize
= 0;
3983 opt
->conflict_style
= -1;
3985 merge_recursive_config(opt
, ui
);
3986 merge_verbosity
= getenv("GIT_MERGE_VERBOSITY");
3987 if (merge_verbosity
)
3988 opt
->verbosity
= strtol(merge_verbosity
, NULL
, 10);
3989 if (opt
->verbosity
>= 5)
3990 opt
->buffer_output
= 0;
3993 void init_ui_merge_options(struct merge_options
*opt
,
3994 struct repository
*repo
)
3996 init_merge_options(opt
, repo
, 1);
3999 void init_basic_merge_options(struct merge_options
*opt
,
4000 struct repository
*repo
)
4002 init_merge_options(opt
, repo
, 0);
4006 * For now, members of merge_options do not need deep copying, but
4007 * it may change in the future, in which case we would need to update
4008 * this, and also make a matching change to clear_merge_options() to
4009 * release the resources held by a copied instance.
4011 void copy_merge_options(struct merge_options
*dst
, struct merge_options
*src
)
4016 void clear_merge_options(struct merge_options
*opt UNUSED
)
4018 ; /* no-op as our copy is shallow right now */
4021 int parse_merge_opt(struct merge_options
*opt
, const char *s
)
4027 if (!strcmp(s
, "ours"))
4028 opt
->recursive_variant
= MERGE_VARIANT_OURS
;
4029 else if (!strcmp(s
, "theirs"))
4030 opt
->recursive_variant
= MERGE_VARIANT_THEIRS
;
4031 else if (!strcmp(s
, "subtree"))
4032 opt
->subtree_shift
= "";
4033 else if (skip_prefix(s
, "subtree=", &arg
))
4034 opt
->subtree_shift
= arg
;
4035 else if (!strcmp(s
, "patience"))
4036 opt
->xdl_opts
= DIFF_WITH_ALG(opt
, PATIENCE_DIFF
);
4037 else if (!strcmp(s
, "histogram"))
4038 opt
->xdl_opts
= DIFF_WITH_ALG(opt
, HISTOGRAM_DIFF
);
4039 else if (skip_prefix(s
, "diff-algorithm=", &arg
)) {
4040 long value
= parse_algorithm_value(arg
);
4043 /* clear out previous settings */
4044 DIFF_XDL_CLR(opt
, NEED_MINIMAL
);
4045 opt
->xdl_opts
&= ~XDF_DIFF_ALGORITHM_MASK
;
4046 opt
->xdl_opts
|= value
;
4048 else if (!strcmp(s
, "ignore-space-change"))
4049 DIFF_XDL_SET(opt
, IGNORE_WHITESPACE_CHANGE
);
4050 else if (!strcmp(s
, "ignore-all-space"))
4051 DIFF_XDL_SET(opt
, IGNORE_WHITESPACE
);
4052 else if (!strcmp(s
, "ignore-space-at-eol"))
4053 DIFF_XDL_SET(opt
, IGNORE_WHITESPACE_AT_EOL
);
4054 else if (!strcmp(s
, "ignore-cr-at-eol"))
4055 DIFF_XDL_SET(opt
, IGNORE_CR_AT_EOL
);
4056 else if (!strcmp(s
, "renormalize"))
4057 opt
->renormalize
= 1;
4058 else if (!strcmp(s
, "no-renormalize"))
4059 opt
->renormalize
= 0;
4060 else if (!strcmp(s
, "no-renames"))
4061 opt
->detect_renames
= 0;
4062 else if (!strcmp(s
, "find-renames")) {
4063 opt
->detect_renames
= 1;
4064 opt
->rename_score
= 0;
4066 else if (skip_prefix(s
, "find-renames=", &arg
) ||
4067 skip_prefix(s
, "rename-threshold=", &arg
)) {
4068 if ((opt
->rename_score
= parse_rename_score(&arg
)) == -1 || *arg
!= 0)
4070 opt
->detect_renames
= 1;
4073 * Please update $__git_merge_strategy_options in
4074 * git-completion.bash when you add new options