2008-02-07 19:40:05 +03:00
|
|
|
#ifndef MERGE_RECURSIVE_H
|
|
|
|
#define MERGE_RECURSIVE_H
|
|
|
|
|
2008-09-03 21:08:56 +04:00
|
|
|
#include "string-list.h"
|
|
|
|
|
2008-08-25 18:25:57 +04:00
|
|
|
struct merge_options {
|
2010-03-21 03:41:38 +03:00
|
|
|
const char *ancestor;
|
2008-08-25 18:25:57 +04:00
|
|
|
const char *branch1;
|
|
|
|
const char *branch2;
|
2009-11-26 05:23:55 +03:00
|
|
|
enum {
|
2008-07-01 09:18:57 +04:00
|
|
|
MERGE_RECURSIVE_NORMAL = 0,
|
2009-11-26 05:23:55 +03:00
|
|
|
MERGE_RECURSIVE_OURS,
|
2010-05-14 13:31:35 +04:00
|
|
|
MERGE_RECURSIVE_THEIRS
|
2009-11-26 05:23:55 +03:00
|
|
|
} recursive_variant;
|
2008-07-01 09:18:57 +04:00
|
|
|
const char *subtree_shift;
|
2008-08-25 18:25:57 +04:00
|
|
|
unsigned buffer_output : 1;
|
2010-08-05 15:15:32 +04:00
|
|
|
unsigned renormalize : 1;
|
2010-08-26 09:50:45 +04:00
|
|
|
long xdl_opts;
|
2008-08-25 18:25:57 +04:00
|
|
|
int verbosity;
|
2016-02-17 06:15:25 +03:00
|
|
|
int detect_rename;
|
2008-08-25 18:25:57 +04:00
|
|
|
int diff_rename_limit;
|
|
|
|
int merge_rename_limit;
|
2010-09-28 03:58:25 +04:00
|
|
|
int rename_score;
|
2011-02-19 13:20:51 +03:00
|
|
|
int needed_rename_limit;
|
2011-02-20 12:53:21 +03:00
|
|
|
int show_rename_progress;
|
2008-09-03 01:30:09 +04:00
|
|
|
int call_depth;
|
2008-09-03 04:30:03 +04:00
|
|
|
struct strbuf obuf;
|
2008-09-03 21:08:56 +04:00
|
|
|
struct string_list current_file_set;
|
|
|
|
struct string_list current_directory_set;
|
2011-08-12 09:19:58 +04:00
|
|
|
struct string_list df_conflict_file_set;
|
2008-08-25 18:25:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* merge_trees() but with recursive ancestor consolidation */
|
|
|
|
int merge_recursive(struct merge_options *o,
|
|
|
|
struct commit *h1,
|
2008-02-07 19:40:05 +03:00
|
|
|
struct commit *h2,
|
|
|
|
struct commit_list *ancestors,
|
|
|
|
struct commit **result);
|
|
|
|
|
2008-08-25 18:25:57 +04:00
|
|
|
/* rename-detecting three-way merge, no recursion */
|
|
|
|
int merge_trees(struct merge_options *o,
|
|
|
|
struct tree *head,
|
2008-02-07 19:40:05 +03:00
|
|
|
struct tree *merge,
|
|
|
|
struct tree *common,
|
|
|
|
struct tree **result);
|
|
|
|
|
2008-08-25 18:25:57 +04:00
|
|
|
/*
|
|
|
|
* "git-merge-recursive" can be fed trees; wrap them into
|
|
|
|
* virtual commits and call merge_recursive() proper.
|
|
|
|
*/
|
|
|
|
int merge_recursive_generic(struct merge_options *o,
|
|
|
|
const unsigned char *head,
|
|
|
|
const unsigned char *merge,
|
|
|
|
int num_ca,
|
|
|
|
const unsigned char **ca,
|
|
|
|
struct commit **result);
|
|
|
|
|
|
|
|
void init_merge_options(struct merge_options *o);
|
|
|
|
struct tree *write_tree_from_memory(struct merge_options *o);
|
2008-08-12 20:45:14 +04:00
|
|
|
|
2010-08-26 09:47:58 +04:00
|
|
|
int parse_merge_opt(struct merge_options *out, const char *s);
|
|
|
|
|
2008-02-07 19:40:05 +03:00
|
|
|
#endif
|