1 #ifndef MERGE_RECURSIVE_H
2 #define MERGE_RECURSIVE_H
4 #include "string-list.h"
10 MERGE_RECURSIVE_NORMAL
= 0,
12 MERGE_RECURSIVE_THEIRS
,
14 const char *subtree_shift
;
15 unsigned buffer_output
: 1;
17 int diff_rename_limit
;
18 int merge_rename_limit
;
21 struct string_list current_file_set
;
22 struct string_list current_directory_set
;
25 /* Return a list of user-friendly error messages to be used by merge */
26 struct unpack_trees_error_msgs
get_porcelain_error_msgs(void);
28 /* merge_trees() but with recursive ancestor consolidation */
29 int merge_recursive(struct merge_options
*o
,
32 struct commit_list
*ancestors
,
33 struct commit
**result
);
35 /* rename-detecting three-way merge, no recursion */
36 int merge_trees(struct merge_options
*o
,
40 struct tree
**result
);
43 * "git-merge-recursive" can be fed trees; wrap them into
44 * virtual commits and call merge_recursive() proper.
46 int merge_recursive_generic(struct merge_options
*o
,
47 const unsigned char *head
,
48 const unsigned char *merge
,
50 const unsigned char **ca
,
51 struct commit
**result
);
53 void init_merge_options(struct merge_options
*o
);
54 struct tree
*write_tree_from_memory(struct merge_options
*o
);