1 #ifndef MERGE_RECURSIVE_H
2 #define MERGE_RECURSIVE_H
4 #include "string-list.h"
11 MERGE_RECURSIVE_NORMAL
= 0,
13 MERGE_RECURSIVE_THEIRS
15 const char *subtree_shift
;
16 unsigned buffer_output
: 1;
18 int diff_rename_limit
;
19 int merge_rename_limit
;
22 struct string_list current_file_set
;
23 struct string_list current_directory_set
;
26 /* Return a list of user-friendly error messages to be used by merge */
27 struct unpack_trees_error_msgs
get_porcelain_error_msgs(void);
29 /* merge_trees() but with recursive ancestor consolidation */
30 int merge_recursive(struct merge_options
*o
,
33 struct commit_list
*ancestors
,
34 struct commit
**result
);
36 /* rename-detecting three-way merge, no recursion */
37 int merge_trees(struct merge_options
*o
,
41 struct tree
**result
);
44 * "git-merge-recursive" can be fed trees; wrap them into
45 * virtual commits and call merge_recursive() proper.
47 int merge_recursive_generic(struct merge_options
*o
,
48 const unsigned char *head
,
49 const unsigned char *merge
,
51 const unsigned char **ca
,
52 struct commit
**result
);
54 void init_merge_options(struct merge_options
*o
);
55 struct tree
*write_tree_from_memory(struct merge_options
*o
);
58 int try_merge_command(const char *strategy
, struct commit_list
*common
, const char *head_arg
, struct commit_list
*remotes
);