|
|
@ -21,6 +21,7 @@ static int trivial_merges_only = 0; |
|
|
|
static int aggressive = 0; |
|
|
|
static int aggressive = 0; |
|
|
|
static int verbose_update = 0; |
|
|
|
static int verbose_update = 0; |
|
|
|
static volatile int progress_update = 0; |
|
|
|
static volatile int progress_update = 0; |
|
|
|
|
|
|
|
static const char *prefix = NULL; |
|
|
|
|
|
|
|
|
|
|
|
static int head_idx = -1; |
|
|
|
static int head_idx = -1; |
|
|
|
static int merge_size = 0; |
|
|
|
static int merge_size = 0; |
|
|
@ -369,7 +370,8 @@ static int unpack_trees(merge_fn_t fn) |
|
|
|
posns[i] = ((struct tree *) posn->item)->entries; |
|
|
|
posns[i] = ((struct tree *) posn->item)->entries; |
|
|
|
posn = posn->next; |
|
|
|
posn = posn->next; |
|
|
|
} |
|
|
|
} |
|
|
|
if (unpack_trees_rec(posns, len, "", fn, &indpos)) |
|
|
|
if (unpack_trees_rec(posns, len, prefix ? prefix : "", |
|
|
|
|
|
|
|
fn, &indpos)) |
|
|
|
return -1; |
|
|
|
return -1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -679,6 +681,28 @@ static int twoway_merge(struct cache_entry **src) |
|
|
|
return deleted_entry(oldtree, current); |
|
|
|
return deleted_entry(oldtree, current); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
* Bind merge. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Keep the index entries at stage0, collapse stage1 but make sure |
|
|
|
|
|
|
|
* stage0 does not have anything in prefix. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
static int bind_merge(struct cache_entry **src) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
struct cache_entry *old = src[0]; |
|
|
|
|
|
|
|
struct cache_entry *a = src[1]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (merge_size != 1) |
|
|
|
|
|
|
|
return error("Cannot do a bind merge of %d trees\n", |
|
|
|
|
|
|
|
merge_size); |
|
|
|
|
|
|
|
if (!a) |
|
|
|
|
|
|
|
return merged_entry(old, NULL); |
|
|
|
|
|
|
|
if (old) |
|
|
|
|
|
|
|
die("Entry '%s' overlaps. Cannot bind.", a->name); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return merged_entry(a, NULL); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
/* |
|
|
|
* One-way merge. |
|
|
|
* One-way merge. |
|
|
|
* |
|
|
|
* |
|
|
@ -760,7 +784,7 @@ static void prime_cache_tree(void) |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static const char read_tree_usage[] = "git-read-tree (<sha> | -m [--aggressive] [-u | -i] <sha1> [<sha2> [<sha3>]])"; |
|
|
|
static const char read_tree_usage[] = "git-read-tree (<sha> | [[-m [--aggressive] | --reset | --prefix=<prefix>] [-u | -i]] <sha1> [<sha2> [<sha3>]])"; |
|
|
|
|
|
|
|
|
|
|
|
static struct cache_file cache_file; |
|
|
|
static struct cache_file cache_file; |
|
|
|
|
|
|
|
|
|
|
@ -805,9 +829,24 @@ int main(int argc, char **argv) |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* "--prefix=<subdirectory>/" means keep the current index |
|
|
|
|
|
|
|
* entries and put the entries from the tree under the |
|
|
|
|
|
|
|
* given subdirectory. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (!strncmp(arg, "--prefix=", 9)) { |
|
|
|
|
|
|
|
if (stage || merge || prefix) |
|
|
|
|
|
|
|
usage(read_tree_usage); |
|
|
|
|
|
|
|
prefix = arg + 9; |
|
|
|
|
|
|
|
merge = 1; |
|
|
|
|
|
|
|
stage = 1; |
|
|
|
|
|
|
|
if (read_cache_unmerged()) |
|
|
|
|
|
|
|
die("you need to resolve your current index first"); |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* This differs from "-m" in that we'll silently ignore unmerged entries */ |
|
|
|
/* This differs from "-m" in that we'll silently ignore unmerged entries */ |
|
|
|
if (!strcmp(arg, "--reset")) { |
|
|
|
if (!strcmp(arg, "--reset")) { |
|
|
|
if (stage || merge) |
|
|
|
if (stage || merge || prefix) |
|
|
|
usage(read_tree_usage); |
|
|
|
usage(read_tree_usage); |
|
|
|
reset = 1; |
|
|
|
reset = 1; |
|
|
|
merge = 1; |
|
|
|
merge = 1; |
|
|
@ -828,7 +867,7 @@ int main(int argc, char **argv) |
|
|
|
|
|
|
|
|
|
|
|
/* "-m" stands for "merge", meaning we start in stage 1 */ |
|
|
|
/* "-m" stands for "merge", meaning we start in stage 1 */ |
|
|
|
if (!strcmp(arg, "-m")) { |
|
|
|
if (!strcmp(arg, "-m")) { |
|
|
|
if (stage || merge) |
|
|
|
if (stage || merge || prefix) |
|
|
|
usage(read_tree_usage); |
|
|
|
usage(read_tree_usage); |
|
|
|
if (read_cache_unmerged()) |
|
|
|
if (read_cache_unmerged()) |
|
|
|
die("you need to resolve your current index first"); |
|
|
|
die("you need to resolve your current index first"); |
|
|
@ -850,12 +889,31 @@ int main(int argc, char **argv) |
|
|
|
if ((update||index_only) && !merge) |
|
|
|
if ((update||index_only) && !merge) |
|
|
|
usage(read_tree_usage); |
|
|
|
usage(read_tree_usage); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (prefix) { |
|
|
|
|
|
|
|
int pfxlen = strlen(prefix); |
|
|
|
|
|
|
|
int pos; |
|
|
|
|
|
|
|
if (prefix[pfxlen-1] != '/') |
|
|
|
|
|
|
|
die("prefix must end with /"); |
|
|
|
|
|
|
|
if (stage != 2) |
|
|
|
|
|
|
|
die("binding merge takes only one tree"); |
|
|
|
|
|
|
|
pos = cache_name_pos(prefix, pfxlen); |
|
|
|
|
|
|
|
if (0 <= pos) |
|
|
|
|
|
|
|
die("corrupt index file"); |
|
|
|
|
|
|
|
pos = -pos-1; |
|
|
|
|
|
|
|
if (pos < active_nr && |
|
|
|
|
|
|
|
!strncmp(active_cache[pos]->name, prefix, pfxlen)) |
|
|
|
|
|
|
|
die("subdirectory '%s' already exists.", prefix); |
|
|
|
|
|
|
|
pos = cache_name_pos(prefix, pfxlen-1); |
|
|
|
|
|
|
|
if (0 <= pos) |
|
|
|
|
|
|
|
die("file '%.*s' already exists.", pfxlen-1, prefix); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (merge) { |
|
|
|
if (merge) { |
|
|
|
if (stage < 2) |
|
|
|
if (stage < 2) |
|
|
|
die("just how do you expect me to merge %d trees?", stage-1); |
|
|
|
die("just how do you expect me to merge %d trees?", stage-1); |
|
|
|
switch (stage - 1) { |
|
|
|
switch (stage - 1) { |
|
|
|
case 1: |
|
|
|
case 1: |
|
|
|
fn = oneway_merge; |
|
|
|
fn = prefix ? bind_merge : oneway_merge; |
|
|
|
break; |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
case 2: |
|
|
|
fn = twoway_merge; |
|
|
|
fn = twoway_merge; |
|
|
|