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;
17 unsigned renormalize
: 1;
20 int diff_rename_limit
;
21 int merge_rename_limit
;
23 int needed_rename_limit
;
24 int show_rename_progress
;
27 struct string_list current_file_set
;
28 struct string_list current_directory_set
;
31 /* merge_trees() but with recursive ancestor consolidation */
32 int merge_recursive(struct merge_options
*o
,
35 struct commit_list
*ancestors
,
36 struct commit
**result
);
38 /* rename-detecting three-way merge, no recursion */
39 int merge_trees(struct merge_options
*o
,
43 struct tree
**result
);
46 * "git-merge-recursive" can be fed trees; wrap them into
47 * virtual commits and call merge_recursive() proper.
49 int merge_recursive_generic(struct merge_options
*o
,
50 const unsigned char *head
,
51 const unsigned char *merge
,
53 const unsigned char **ca
,
54 struct commit
**result
);
56 void init_merge_options(struct merge_options
*o
);
57 struct tree
*write_tree_from_memory(struct merge_options
*o
);
59 int parse_merge_opt(struct merge_options
*out
, const char *s
);
62 int try_merge_command(const char *strategy
, size_t xopts_nr
,
63 const char **xopts
, struct commit_list
*common
,
64 const char *head_arg
, struct commit_list
*remotes
);