Start the 2.46 cycle
[alt-git.git] / merge.h
blob21ac7ef2f130eb3be46a46618a488df55812ad53
1 #ifndef MERGE_H
2 #define MERGE_H
4 struct commit_list;
5 struct object_id;
6 struct repository;
8 int try_merge_command(struct repository *r,
9 const char *strategy, size_t xopts_nr,
10 const char **xopts, struct commit_list *common,
11 const char *head_arg, struct commit_list *remotes);
12 int checkout_fast_forward(struct repository *r,
13 const struct object_id *from,
14 const struct object_id *to,
15 int overwrite_ignore);
17 #endif /* MERGE_H */