]> git.ipfire.org Git - thirdparty/git.git/blame - merge-recursive.h
send-email: file_declares_8bit_cte doesn't need a prototype
[thirdparty/git.git] / merge-recursive.h
CommitLineData
e1b3a2ca
DB
1#ifndef MERGE_RECURSIVE_H
2#define MERGE_RECURSIVE_H
3
696ee23c
MV
4#include "string-list.h"
5
8a2fce18 6struct merge_options {
4c5868f4 7 const char *ancestor;
8a2fce18
MV
8 const char *branch1;
9 const char *branch2;
8cc5b290 10 enum {
85e51b78 11 MERGE_RECURSIVE_NORMAL = 0,
8cc5b290 12 MERGE_RECURSIVE_OURS,
4b05548f 13 MERGE_RECURSIVE_THEIRS
8cc5b290 14 } recursive_variant;
85e51b78 15 const char *subtree_shift;
8a2fce18 16 unsigned buffer_output : 1;
1bc0ab7c 17 unsigned renormalize : 1;
8a2fce18
MV
18 int verbosity;
19 int diff_rename_limit;
20 int merge_rename_limit;
5033639c 21 int call_depth;
c7d84924 22 struct strbuf obuf;
696ee23c
MV
23 struct string_list current_file_set;
24 struct string_list current_directory_set;
8a2fce18
MV
25};
26
27/* merge_trees() but with recursive ancestor consolidation */
28int merge_recursive(struct merge_options *o,
29 struct commit *h1,
e1b3a2ca 30 struct commit *h2,
e1b3a2ca
DB
31 struct commit_list *ancestors,
32 struct commit **result);
33
8a2fce18
MV
34/* rename-detecting three-way merge, no recursion */
35int merge_trees(struct merge_options *o,
36 struct tree *head,
e1b3a2ca
DB
37 struct tree *merge,
38 struct tree *common,
e1b3a2ca 39 struct tree **result);
e1b3a2ca 40
8a2fce18
MV
41/*
42 * "git-merge-recursive" can be fed trees; wrap them into
43 * virtual commits and call merge_recursive() proper.
44 */
45int merge_recursive_generic(struct merge_options *o,
46 const unsigned char *head,
47 const unsigned char *merge,
48 int num_ca,
49 const unsigned char **ca,
50 struct commit **result);
51
52void init_merge_options(struct merge_options *o);
53struct tree *write_tree_from_memory(struct merge_options *o);
9047ebbc 54
c674d052
CC
55/* builtin/merge.c */
56int try_merge_command(const char *strategy, struct commit_list *common, const char *head_arg, struct commit_list *remotes);
57
e1b3a2ca 58#endif