5 #include "argv-array.h"
7 #define MAX_UNPACK_TREES 8
9 struct unpack_trees_options;
12 typedef int (*merge_fn_t)(const struct cache_entry * const *src,
13 struct unpack_trees_options *options);
15 enum unpack_trees_error_types {
16 ERROR_WOULD_OVERWRITE = 0,
17 ERROR_NOT_UPTODATE_FILE,
18 ERROR_NOT_UPTODATE_DIR,
19 ERROR_WOULD_LOSE_UNTRACKED_OVERWRITTEN,
20 ERROR_WOULD_LOSE_UNTRACKED_REMOVED,
22 ERROR_SPARSE_NOT_UPTODATE_FILE,
23 ERROR_WOULD_LOSE_ORPHANED_OVERWRITTEN,
24 ERROR_WOULD_LOSE_ORPHANED_REMOVED,
25 ERROR_WOULD_LOSE_SUBMODULE,
26 NB_UNPACK_TREES_ERROR_TYPES
30 * Sets the list of user-friendly error messages to be used by the
31 * command "cmd" (either merge or checkout), and show_all_errors to 1.
33 void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
37 * Frees resources allocated by setup_unpack_trees_porcelain().
39 void clear_unpack_trees_porcelain(struct unpack_trees_options *opts);
41 struct unpack_trees_options {
61 struct dir_struct *dir;
62 struct pathspec *pathspec;
64 const char *msgs[NB_UNPACK_TREES_ERROR_TYPES];
65 struct argv_array msgs_to_free;
67 * Store error messages in an array, each case
68 * corresponding to a error message type
70 struct string_list unpack_rejects[NB_UNPACK_TREES_ERROR_TYPES];
75 struct cache_entry *df_conflict_entry;
78 struct index_state *dst_index;
79 struct index_state *src_index;
80 struct index_state result;
82 struct exclude_list *el; /* for internal use */
85 extern int unpack_trees(unsigned n, struct tree_desc *t,
86 struct unpack_trees_options *options);
88 int verify_uptodate(const struct cache_entry *ce,
89 struct unpack_trees_options *o);
91 int threeway_merge(const struct cache_entry * const *stages,
92 struct unpack_trees_options *o);
93 int twoway_merge(const struct cache_entry * const *src,
94 struct unpack_trees_options *o);
95 int bind_merge(const struct cache_entry * const *src,
96 struct unpack_trees_options *o);
97 int oneway_merge(const struct cache_entry * const *src,
98 struct unpack_trees_options *o);