summaryrefslogtreecommitdiff
path: root/merge-recursive.h
blob: f37630a8ad07709ae106ddde44a34daf6bad8b16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef MERGE_RECURSIVE_H
#define MERGE_RECURSIVE_H
 
int merge_recursive(struct commit *h1,
		    struct commit *h2,
		    const char *branch1,
		    const char *branch2,
		    struct commit_list *ancestors,
		    struct commit **result);
 
int merge_trees(struct tree *head,
		struct tree *merge,
		struct tree *common,
		const char *branch1,
		const char *branch2,
		struct tree **result);
 
struct tree *write_tree_from_memory(void);
 
#endif