public inbox for git@vger.kernel.org
 help / color / mirror / Atom feed
From: "Samo Pogačnik via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: "Patrick Steinhardt" <ps@pks.im>,
	"Samo Pogačnik" <samo_pogacnik@t-2.net>
Subject: [PATCH v3 0/2] shallow: handling fetch relative-deepen
Date: Sat, 10 Jan 2026 05:13:36 +0000	[thread overview]
Message-ID: <pull.2121.v3.git.git.1768022018.gitgitgadget@gmail.com> (raw)
In-Reply-To: <pull.2121.v2.git.git.1767997426.gitgitgadget@gmail.com>

When a shallowed repository gets deepened beyond the beginning of a merged
branch, we may endup with some shallows, that are behind the reachable ones.
Added test 'fetching deepen beyond merged branch' exposes that behaviour.

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.

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 allways summ 'data->deepen_relative' and 'depth'
values, because 'data->deepen_relative' is always 0 in absolute deepening.

Samo Pogačnik (2):
  shallow: free local object_array allocations
  shallow: handling fetch relative-deepen

 shallow.c             | 45 +++++++++++++++++--------
 shallow.h             |  1 +
 t/t5500-fetch-pack.sh | 23 +++++++++++++
 upload-pack.c         | 76 +++++--------------------------------------
 4 files changed, 64 insertions(+), 81 deletions(-)


base-commit: f0ef5b6d9bcc258e4cbef93839d1b7465d5212b9
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-2121%2Fspog%2Ffix-fetch-deepen-v3
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-2121/spog/fix-fetch-deepen-v3
Pull-Request: https://github.com/git/git/pull/2121

Range-diff vs v2:

 1:  f8a8d077cd = 1:  f8a8d077cd shallow: free local object_array allocations
 2:  ba1f80105f ! 2:  e79ab6b740 shallow: handling fetch relative-deepen
     @@ Commit message
      
          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
     +       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
     +       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.
     +       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,
     @@ Commit message
      
          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
     +       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

-- 
gitgitgadget

  parent reply	other threads:[~2026-01-10  5:13 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-09 18:11 [PATCH 0/2] shallow: handling fetch relative-deepen Samo Pogačnik via GitGitGadget
2025-12-09 18:11 ` [PATCH 1/2] shallow: free local object_array allocations Samo Pogačnik via GitGitGadget
2026-01-06  7:44   ` Patrick Steinhardt
2026-01-09 16:21     ` Samo Pogačnik
2026-01-09 16:33       ` Patrick Steinhardt
2025-12-09 18:11 ` [PATCH 2/2] shallow: handling fetch relative-deepen Samo Pogačnik via GitGitGadget
2026-01-06  7:44   ` Patrick Steinhardt
2026-01-09 16:48     ` Samo Pogačnik
2026-01-09 22:23 ` [PATCH v2 0/2] " Samo Pogačnik via GitGitGadget
2026-01-09 22:23   ` [PATCH v2 1/2] shallow: free local object_array allocations Samo Pogačnik via GitGitGadget
2026-01-09 22:23   ` [PATCH v2 2/2] shallow: handling fetch relative-deepen Samo Pogačnik via GitGitGadget
2026-01-10  4:17     ` Junio C Hamano
2026-01-10  5:13   ` Samo Pogačnik via GitGitGadget [this message]
2026-01-10  5:13     ` [PATCH v3 1/2] shallow: free local object_array allocations Samo Pogačnik via GitGitGadget
2026-01-10  5:13     ` [PATCH v3 2/2] shallow: handling fetch relative-deepen Samo Pogačnik via GitGitGadget
2026-01-15 15:50       ` Kristoffer Haugsbakk
2026-01-16 22:30     ` [PATCH v4 0/2] " Samo Pogačnik via GitGitGadget
2026-01-16 22:31       ` [PATCH v4 1/2] shallow: free local object_array allocations Samo Pogačnik via GitGitGadget
2026-01-16 22:31       ` [PATCH v4 2/2] shallow: handling fetch relative-deepen Samo Pogačnik via GitGitGadget
2026-02-11 13:38         ` Patrick Steinhardt
2026-02-13 20:48           ` Samo Pogačnik
2026-02-14  9:40           ` Samo Pogačnik
2026-02-15 11:19             ` Samo Pogačnik
2026-02-15 20:11       ` [PATCH v5 0/2] " Samo Pogačnik via GitGitGadget
2026-02-15 20:11         ` [PATCH v5 1/2] shallow: free local object_array allocations Samo Pogačnik via GitGitGadget
2026-02-15 20:11         ` [PATCH v5 2/2] shallow: handling fetch relative-deepen Samo Pogačnik via GitGitGadget
2026-02-20 22:34         ` [PATCH v5 0/2] " Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=pull.2121.v3.git.git.1768022018.gitgitgadget@gmail.com \
    --to=gitgitgadget@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=ps@pks.im \
    --cc=samo_pogacnik@t-2.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox