2008-02-08 00:40:05 +08:00
|
|
|
#ifndef MERGE_RECURSIVE_H
|
|
|
|
#define MERGE_RECURSIVE_H
|
|
|
|
|
2008-09-04 01:08:56 +08:00
|
|
|
#include "string-list.h"
|
2018-08-16 01:54:05 +08:00
|
|
|
#include "unpack-trees.h"
|
|
|
|
|
|
|
|
struct commit;
|
2008-09-04 01:08:56 +08:00
|
|
|
|
2019-01-12 10:13:29 +08:00
|
|
|
struct repository;
|
|
|
|
|
2008-08-25 22:25:57 +08:00
|
|
|
struct merge_options {
|
2010-03-21 08:41:38 +08:00
|
|
|
const char *ancestor;
|
2008-08-25 22:25:57 +08:00
|
|
|
const char *branch1;
|
|
|
|
const char *branch2;
|
2009-11-26 10:23:55 +08:00
|
|
|
enum {
|
2008-07-01 13:18:57 +08:00
|
|
|
MERGE_RECURSIVE_NORMAL = 0,
|
2009-11-26 10:23:55 +08:00
|
|
|
MERGE_RECURSIVE_OURS,
|
2010-05-14 17:31:35 +08:00
|
|
|
MERGE_RECURSIVE_THEIRS
|
2009-11-26 10:23:55 +08:00
|
|
|
} recursive_variant;
|
2008-07-01 13:18:57 +08:00
|
|
|
const char *subtree_shift;
|
2016-08-01 19:44:50 +08:00
|
|
|
unsigned buffer_output; /* 1: output at end, 2: keep buffered */
|
2010-08-05 19:15:32 +08:00
|
|
|
unsigned renormalize : 1;
|
2010-08-26 13:50:45 +08:00
|
|
|
long xdl_opts;
|
2008-08-25 22:25:57 +08:00
|
|
|
int verbosity;
|
2019-08-18 02:41:25 +08:00
|
|
|
enum {
|
|
|
|
MERGE_DIRECTORY_RENAMES_NONE = 0,
|
|
|
|
MERGE_DIRECTORY_RENAMES_CONFLICT = 1,
|
|
|
|
MERGE_DIRECTORY_RENAMES_TRUE = 2
|
|
|
|
} detect_directory_renames;
|
2018-05-03 00:01:14 +08:00
|
|
|
int diff_detect_rename;
|
|
|
|
int merge_detect_rename;
|
2008-08-25 22:25:57 +08:00
|
|
|
int diff_rename_limit;
|
|
|
|
int merge_rename_limit;
|
2010-09-28 07:58:25 +08:00
|
|
|
int rename_score;
|
2011-02-19 18:20:51 +08:00
|
|
|
int needed_rename_limit;
|
2011-02-20 17:53:21 +08:00
|
|
|
int show_rename_progress;
|
2008-09-03 05:30:09 +08:00
|
|
|
int call_depth;
|
2008-09-03 08:30:03 +08:00
|
|
|
struct strbuf obuf;
|
2017-09-08 00:25:56 +08:00
|
|
|
struct hashmap current_file_dir_set;
|
2011-08-12 13:19:58 +08:00
|
|
|
struct string_list df_conflict_file_set;
|
2018-04-20 01:58:12 +08:00
|
|
|
struct unpack_trees_options unpack_opts;
|
2018-04-20 01:58:20 +08:00
|
|
|
struct index_state orig_index;
|
2019-01-12 10:13:29 +08:00
|
|
|
struct repository *repo;
|
2018-02-15 02:51:57 +08:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:58:05 +08:00
|
|
|
/*
|
|
|
|
* For dir_rename_entry, directory names are stored as a full path from the
|
|
|
|
* toplevel of the repository and do not include a trailing '/'. Also:
|
|
|
|
*
|
|
|
|
* dir: original name of directory being renamed
|
|
|
|
* non_unique_new_dir: if true, could not determine new_dir
|
|
|
|
* new_dir: final name of directory being renamed
|
|
|
|
* possible_new_dirs: temporary used to help determine new_dir; see comments
|
|
|
|
* in get_directory_renames() for details
|
|
|
|
*/
|
|
|
|
struct dir_rename_entry {
|
|
|
|
struct hashmap_entry ent; /* must be the first member! */
|
|
|
|
char *dir;
|
|
|
|
unsigned non_unique_new_dir:1;
|
|
|
|
struct strbuf new_dir;
|
|
|
|
struct string_list possible_new_dirs;
|
|
|
|
};
|
|
|
|
|
2018-04-20 01:58:07 +08:00
|
|
|
struct collision_entry {
|
|
|
|
struct hashmap_entry ent; /* must be the first member! */
|
|
|
|
char *target_file;
|
|
|
|
struct string_list source_files;
|
|
|
|
unsigned reported_already:1;
|
|
|
|
};
|
|
|
|
|
2019-08-18 02:41:36 +08:00
|
|
|
static inline int merge_detect_rename(struct merge_options *opt)
|
2018-05-03 00:01:14 +08:00
|
|
|
{
|
2019-08-18 02:41:36 +08:00
|
|
|
return opt->merge_detect_rename >= 0 ? opt->merge_detect_rename :
|
|
|
|
opt->diff_detect_rename >= 0 ? opt->diff_detect_rename : 1;
|
2018-05-03 00:01:14 +08:00
|
|
|
}
|
|
|
|
|
2019-08-18 02:41:30 +08:00
|
|
|
/*
|
|
|
|
* merge_recursive is like merge_trees() but with recursive ancestor
|
|
|
|
* consolidation, and when successful, it creates an actual commit
|
|
|
|
* and writes its address to *result.
|
|
|
|
*
|
|
|
|
* NOTE: empirically, about a decade ago it was determined that with more
|
|
|
|
* than two merge bases, optimal behavior was found when the
|
2019-08-18 02:41:34 +08:00
|
|
|
* merge_bases were passed in the order of oldest commit to newest
|
|
|
|
* commit. Also, merge_bases will be consumed (emptied) so make a
|
|
|
|
* copy if you need it.
|
2019-08-18 02:41:30 +08:00
|
|
|
*/
|
2019-08-18 02:41:36 +08:00
|
|
|
int merge_recursive(struct merge_options *opt,
|
2008-08-25 22:25:57 +08:00
|
|
|
struct commit *h1,
|
2008-02-08 00:40:05 +08:00
|
|
|
struct commit *h2,
|
2019-08-18 02:41:34 +08:00
|
|
|
struct commit_list *merge_bases,
|
2008-02-08 00:40:05 +08:00
|
|
|
struct commit **result);
|
|
|
|
|
2019-08-18 02:41:30 +08:00
|
|
|
/*
|
|
|
|
* rename-detecting three-way merge, no recursion; result of merge is written
|
|
|
|
* to opt->repo->index.
|
|
|
|
*/
|
2019-08-18 02:41:36 +08:00
|
|
|
int merge_trees(struct merge_options *opt,
|
2008-08-25 22:25:57 +08:00
|
|
|
struct tree *head,
|
2008-02-08 00:40:05 +08:00
|
|
|
struct tree *merge,
|
2019-08-18 02:41:34 +08:00
|
|
|
struct tree *merge_base);
|
2008-02-08 00:40:05 +08:00
|
|
|
|
2008-08-25 22:25:57 +08:00
|
|
|
/*
|
|
|
|
* "git-merge-recursive" can be fed trees; wrap them into
|
|
|
|
* virtual commits and call merge_recursive() proper.
|
|
|
|
*/
|
2019-08-18 02:41:36 +08:00
|
|
|
int merge_recursive_generic(struct merge_options *opt,
|
2016-06-25 07:09:28 +08:00
|
|
|
const struct object_id *head,
|
|
|
|
const struct object_id *merge,
|
2019-08-18 02:41:34 +08:00
|
|
|
int num_merge_bases,
|
|
|
|
const struct object_id **merge_bases,
|
2008-08-25 22:25:57 +08:00
|
|
|
struct commit **result);
|
|
|
|
|
2019-08-18 02:41:36 +08:00
|
|
|
void init_merge_options(struct merge_options *opt,
|
2019-01-12 10:13:29 +08:00
|
|
|
struct repository *repo);
|
2008-08-13 00:45:14 +08:00
|
|
|
|
2019-08-18 02:41:36 +08:00
|
|
|
int parse_merge_opt(struct merge_options *opt, const char *s);
|
2010-08-26 13:47:58 +08:00
|
|
|
|
2008-02-08 00:40:05 +08:00
|
|
|
#endif
|