mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-13 21:26:20 +00:00
merge: Implement GIT_MERGE_TREE_SKIP_REUC
This commit is contained in:
parent
d307a0134b
commit
a1f5d691a2
@ -79,6 +79,11 @@ typedef enum {
|
|||||||
* GIT_EMERGECONFLICT and no index will be returned.
|
* GIT_EMERGECONFLICT and no index will be returned.
|
||||||
*/
|
*/
|
||||||
GIT_MERGE_TREE_FAIL_ON_CONFLICT = (1 << 1),
|
GIT_MERGE_TREE_FAIL_ON_CONFLICT = (1 << 1),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Do not write the REUC extension on the generated index
|
||||||
|
*/
|
||||||
|
GIT_MERGE_TREE_SKIP_REUC = (1 << 2),
|
||||||
} git_merge_tree_flag_t;
|
} git_merge_tree_flag_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
71
src/merge.c
71
src/merge.c
@ -1541,7 +1541,45 @@ static int merge_index_insert_reuc(
|
|||||||
mode[0], oid[0], mode[1], oid[1], mode[2], oid[2]);
|
mode[0], oid[0], mode[1], oid[1], mode[2], oid[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
int index_from_diff_list(git_index **out, git_merge_diff_list *diff_list)
|
static int index_update_reuc(git_index *index, git_merge_diff_list *diff_list)
|
||||||
|
{
|
||||||
|
int error;
|
||||||
|
size_t i;
|
||||||
|
git_merge_diff *conflict;
|
||||||
|
|
||||||
|
/* Add each entry in the resolved conflict to the REUC independently, since
|
||||||
|
* the paths may differ due to renames. */
|
||||||
|
git_vector_foreach(&diff_list->resolved, i, conflict) {
|
||||||
|
const git_index_entry *ancestor =
|
||||||
|
GIT_MERGE_INDEX_ENTRY_EXISTS(conflict->ancestor_entry) ?
|
||||||
|
&conflict->ancestor_entry : NULL;
|
||||||
|
|
||||||
|
const git_index_entry *ours =
|
||||||
|
GIT_MERGE_INDEX_ENTRY_EXISTS(conflict->our_entry) ?
|
||||||
|
&conflict->our_entry : NULL;
|
||||||
|
|
||||||
|
const git_index_entry *theirs =
|
||||||
|
GIT_MERGE_INDEX_ENTRY_EXISTS(conflict->their_entry) ?
|
||||||
|
&conflict->their_entry : NULL;
|
||||||
|
|
||||||
|
if (ancestor != NULL &&
|
||||||
|
(error = merge_index_insert_reuc(index, TREE_IDX_ANCESTOR, ancestor)) < 0)
|
||||||
|
return error;
|
||||||
|
|
||||||
|
if (ours != NULL &&
|
||||||
|
(error = merge_index_insert_reuc(index, TREE_IDX_OURS, ours)) < 0)
|
||||||
|
return error;
|
||||||
|
|
||||||
|
if (theirs != NULL &&
|
||||||
|
(error = merge_index_insert_reuc(index, TREE_IDX_THEIRS, theirs)) < 0)
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int index_from_diff_list(git_index **out,
|
||||||
|
git_merge_diff_list *diff_list, bool skip_reuc)
|
||||||
{
|
{
|
||||||
git_index *index;
|
git_index *index;
|
||||||
size_t i;
|
size_t i;
|
||||||
@ -1600,31 +1638,8 @@ int index_from_diff_list(git_index **out, git_merge_diff_list *diff_list)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add each entry in the resolved conflict to the REUC independently, since
|
if (!skip_reuc) {
|
||||||
* the paths may differ due to renames. */
|
if ((error = index_update_reuc(index, diff_list)) < 0)
|
||||||
git_vector_foreach(&diff_list->resolved, i, conflict) {
|
|
||||||
const git_index_entry *ancestor =
|
|
||||||
GIT_MERGE_INDEX_ENTRY_EXISTS(conflict->ancestor_entry) ?
|
|
||||||
&conflict->ancestor_entry : NULL;
|
|
||||||
|
|
||||||
const git_index_entry *ours =
|
|
||||||
GIT_MERGE_INDEX_ENTRY_EXISTS(conflict->our_entry) ?
|
|
||||||
&conflict->our_entry : NULL;
|
|
||||||
|
|
||||||
const git_index_entry *theirs =
|
|
||||||
GIT_MERGE_INDEX_ENTRY_EXISTS(conflict->their_entry) ?
|
|
||||||
&conflict->their_entry : NULL;
|
|
||||||
|
|
||||||
if (ancestor != NULL &&
|
|
||||||
(error = merge_index_insert_reuc(index, TREE_IDX_ANCESTOR, ancestor)) < 0)
|
|
||||||
goto on_error;
|
|
||||||
|
|
||||||
if (ours != NULL &&
|
|
||||||
(error = merge_index_insert_reuc(index, TREE_IDX_OURS, ours)) < 0)
|
|
||||||
goto on_error;
|
|
||||||
|
|
||||||
if (theirs != NULL &&
|
|
||||||
(error = merge_index_insert_reuc(index, TREE_IDX_THEIRS, theirs)) < 0)
|
|
||||||
goto on_error;
|
goto on_error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1633,7 +1648,6 @@ int index_from_diff_list(git_index **out, git_merge_diff_list *diff_list)
|
|||||||
|
|
||||||
on_error:
|
on_error:
|
||||||
git_index_free(index);
|
git_index_free(index);
|
||||||
|
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1715,7 +1729,8 @@ int git_merge__iterators(
|
|||||||
if (!given_opts || !given_opts->metric)
|
if (!given_opts || !given_opts->metric)
|
||||||
git__free(opts.metric);
|
git__free(opts.metric);
|
||||||
|
|
||||||
error = index_from_diff_list(out, diff_list);
|
error = index_from_diff_list(out, diff_list,
|
||||||
|
(opts.tree_flags & GIT_MERGE_TREE_SKIP_REUC));
|
||||||
|
|
||||||
done:
|
done:
|
||||||
git_merge_diff_list__free(diff_list);
|
git_merge_diff_list__free(diff_list);
|
||||||
|
Loading…
Reference in New Issue
Block a user