aboutsummaryrefslogtreecommitdiff
path: root/upload-pack.c
diff options
context:
space:
mode:
authorSamo Pogačnik <samo_pogacnik@t-2.net>2026-02-15 20:11:56 +0000
committerJunio C Hamano <gitster@pobox.com>2026-02-17 11:46:15 -0800
commit3ef68ff40ebf75bba9c4b05f50197190ff1abda2 (patch)
treee8ee2af16d4d4814a8a4aba230cfc3ca9829935b /upload-pack.c
parentd0abfb048fe0a069a4d3cd42fdd0c99afec141c4 (diff)
downloadgit-3ef68ff40ebf75bba9c4b05f50197190ff1abda2.tar.xz
shallow: handling fetch relative-deepen
When a shallowed repository gets deepened beyond the beginning of a merged branch, we may end up with some shallows that are hidden behind the reachable shallow commits. Added test 'fetching deepen beyond merged branch' exposes that behaviour. An example showing the problem based on added test: 0. Whole initial git repo to be cloned from Graph: * 033585d (HEAD -> main) Merge branch 'branch' |\ | * 984f8b1 (branch) five | * ecb578a four |/ * 0cb5d20 three * 2b4e70d two * 61ba98b one 1. Initial shallow clone --depth=3 (all good) Shallows: 2b4e70da2a10e1d3231a0ae2df396024735601f1 ecb578a3cf37198d122ae5df7efed9abaca17144 Graph: * 033585d (HEAD -> main) Merge branch 'branch' |\ | * 984f8b1 five | * ecb578a (grafted) four * 0cb5d20 three * 2b4e70d (grafted) two 2. Deepen shallow clone with fetch --deepen=1 (NOT OK) Shallows: 0cb5d204f4ef96ed241feb0f2088c9f4794ba758 61ba98be443fd51c542eb66585a1f6d7e15fcdae Graph: * 033585d (HEAD -> main) Merge branch 'branch' |\ | * 984f8b1 five | * ecb578a four |/ * 0cb5d20 (grafted) three --- Note that second shallow commit 61ba98be443fd51c542eb66585a1f6d7e15fcdae is not reachable. On the other hand, it seems that equivalent absolute depth driven fetches result in all the correct shallows. That led to this proposal, which unifies absolute and relative deepening in a way that the same get_shallow_commits() call is used in both cases. The difference is only that depth is adapted for relative deepening by measuring equivalent depth of current local shallow commits in the current remote repo. Thus a new function get_shallows_depth() has been added and the function get_reachable_list() became redundant / removed. Same example showing the corrected second step: 2. Deepen shallow clone with fetch --deepen=1 (all good) Shallow: 61ba98be443fd51c542eb66585a1f6d7e15fcdae Graph: * 033585d (HEAD -> main) Merge branch 'branch' |\ | * 984f8b1 five | * ecb578a four |/ * 0cb5d20 three * 2b4e70d two * 61ba98b (grafted) one The get_shallows_depth() function also shares the logic of the get_shallow_commits() function, but it focuses on counting depth of each existing shallow commit. The minimum result is stored as 'data->deepen_relative', which is set not to be zero for relative deepening anyway. That way we can always sum 'data->deepen_relative' and 'depth' values, because 'data->deepen_relative' is always 0 in absolute deepening. To avoid duplicating logic between get_shallows_depth() and get_shallow_commits(), get_shallow_commits() was modified so that it is used by get_shallows_depth(). Signed-off-by: Samo Pogačnik <samo_pogacnik@t-2.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'upload-pack.c')
-rw-r--r--upload-pack.c72
1 files changed, 2 insertions, 70 deletions
diff --git a/upload-pack.c b/upload-pack.c
index 2d2b70cbf2..88dac1b65c 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -704,56 +704,6 @@ error:
return -1;
}
-static int get_reachable_list(struct upload_pack_data *data,
- struct object_array *reachable)
-{
- struct child_process cmd = CHILD_PROCESS_INIT;
- int i;
- struct object *o;
- char namebuf[GIT_MAX_HEXSZ + 2]; /* ^ + hash + LF */
- const unsigned hexsz = the_hash_algo->hexsz;
- int ret;
-
- if (do_reachable_revlist(&cmd, &data->shallows, reachable,
- data->allow_uor) < 0) {
- ret = -1;
- goto out;
- }
-
- while ((i = read_in_full(cmd.out, namebuf, hexsz + 1)) == hexsz + 1) {
- struct object_id oid;
- const char *p;
-
- if (parse_oid_hex(namebuf, &oid, &p) || *p != '\n')
- break;
-
- o = lookup_object(the_repository, &oid);
- if (o && o->type == OBJ_COMMIT) {
- o->flags &= ~TMP_MARK;
- }
- }
- for (i = get_max_object_index(the_repository); 0 < i; i--) {
- o = get_indexed_object(the_repository, i - 1);
- if (o && o->type == OBJ_COMMIT &&
- (o->flags & TMP_MARK)) {
- add_object_array(o, NULL, reachable);
- o->flags &= ~TMP_MARK;
- }
- }
- close(cmd.out);
-
- if (finish_command(&cmd)) {
- ret = -1;
- goto out;
- }
-
- ret = 0;
-
-out:
- child_process_clear(&cmd);
- return ret;
-}
-
static int has_unreachable(struct object_array *src, enum allow_uor allow_uor)
{
struct child_process cmd = CHILD_PROCESS_INIT;
@@ -881,29 +831,11 @@ static void deepen(struct upload_pack_data *data, int depth)
struct object *object = data->shallows.objects[i].item;
object->flags |= NOT_SHALLOW;
}
- } else if (data->deepen_relative) {
- struct object_array reachable_shallows = OBJECT_ARRAY_INIT;
- struct commit_list *result;
-
- /*
- * Checking for reachable shallows requires that our refs be
- * marked with OUR_REF.
- */
- refs_head_ref_namespaced(get_main_ref_store(the_repository),
- check_ref, data);
- for_each_namespaced_ref_1(check_ref, data);
-
- get_reachable_list(data, &reachable_shallows);
- result = get_shallow_commits(&reachable_shallows,
- depth + 1,
- SHALLOW, NOT_SHALLOW);
- send_shallow(data, result);
- free_commit_list(result);
- object_array_clear(&reachable_shallows);
} else {
struct commit_list *result;
- result = get_shallow_commits(&data->want_obj, depth,
+ result = get_shallow_commits(&data->want_obj, &data->shallows,
+ data->deepen_relative, depth,
SHALLOW, NOT_SHALLOW);
send_shallow(data, result);
free_commit_list(result);