mirror of
https://github.com/git/git
synced 2024-11-04 16:17:49 +00:00
18 lines
446 B
C
18 lines
446 B
C
|
#ifndef MERGE_H
|
||
|
#define MERGE_H
|
||
|
|
||
|
struct commit_list;
|
||
|
struct object_id;
|
||
|
struct repository;
|
||
|
|
||
|
int try_merge_command(struct repository *r,
|
||
|
const char *strategy, size_t xopts_nr,
|
||
|
const char **xopts, struct commit_list *common,
|
||
|
const char *head_arg, struct commit_list *remotes);
|
||
|
int checkout_fast_forward(struct repository *r,
|
||
|
const struct object_id *from,
|
||
|
const struct object_id *to,
|
||
|
int overwrite_ignore);
|
||
|
|
||
|
#endif /* MERGE_H */
|