From: "René Scharfe" <l.s.r@web.de>
To: "Samo Pogačnik" <samo_pogacnik@t-2.net>,
"Owen Stephens" <owen@owenstephens.co.uk>,
git@vger.kernel.org
Subject: Re: [Bug] fetch --deepen truncates history in v2.54.0
Date: Tue, 5 May 2026 22:34:37 +0200 [thread overview]
Message-ID: <e8257951-4ea7-40ba-8043-f4f2a080b70b@web.de> (raw)
In-Reply-To: <2afd4a28a9a542f8baeab488cb0801d6b98adb0a.camel@t-2.net>
On 5/5/26 9:27 PM, Samo Pogačnik wrote:
>
> Hi, thanks for pointing out this edge case. Would you care to check the
> following change (the provided test is also a bit modified):
There's spurious wrapping in the patch, but the changes look good to me.
Care to send them with a commit message and sign-off?
René
> diff --git a/shallow.c b/shallow.c
> index a156006d88..ec95653132 100644
> --- a/shallow.c
> +++ b/shallow.c
> @@ -245,7 +245,11 @@ struct commit_list *get_shallow_commits(struct object_array
> *heads,
> int depth, int shallow_flag, int
> not_shallow_flag)
> {
> if (shallows && deepen_relative) {
> - depth += get_shallows_depth(heads, shallows);
> + int cur_shallow_depth = get_shallows_depth(heads, shallows);
> + if (cur_shallow_depth)
> + depth += cur_shallow_depth;
> + else
> + return NULL;
Nice. get_shallows_depth() returns 0 on full clones; translating it to
an empty list of shallow commits makes sense.
> }
> return get_shallows_or_depth(heads, NULL, NULL,
> depth, shallow_flag, not_shallow_flag);
> diff --git a/t/t5537-fetch-shallow.sh b/t/t5537-fetch-shallow.sh
> index 6588ce6226..9982dd2aa6 100755
> --- a/t/t5537-fetch-shallow.sh
> +++ b/t/t5537-fetch-shallow.sh
> @@ -251,6 +251,16 @@ test_expect_success '.git/shallow is edited by repack' '
> origin "+refs/heads/*:refs/remotes/origin/*"
> '
>
> +test_expect_success 'fetch --deepen does not truncate' '
> + git clone --no-local .git full-clone &&
> + git -C full-clone rev-parse --is-shallow-repository >expect &&
> + git -C full-clone log --oneline >>expect &&
> + git -C full-clone fetch --deepen=1 &&
> + git -C full-clone rev-parse --is-shallow-repository >actual &&
> + git -C full-clone log --oneline >>actual &&
Using the exact same commands to prepare expect and actual creates a
pleasant symmetry.
> + test_cmp expect actual
> +'
> +
> . "$TEST_DIRECTORY"/lib-httpd.sh
> start_httpd
>
next prev parent reply other threads:[~2026-05-05 20:34 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-29 11:27 [Bug] fetch --deepen truncates history in v2.54.0 Owen Stephens
2026-04-29 13:14 ` Owen Stephens
2026-04-29 13:16 ` D. Ben Knoble
2026-04-30 9:10 ` Mikael Magnusson
2026-05-02 9:22 ` René Scharfe
2026-05-02 20:26 ` René Scharfe
2026-05-05 19:27 ` Samo Pogačnik
2026-05-05 20:34 ` René Scharfe [this message]
2026-05-05 21:26 ` Samo Pogačnik
2026-05-06 21:56 ` [PATCH 1/1] shallow: fix relative deepen on non-shallow repositories Samo Pogačnik
2026-05-11 0:09 ` Junio C Hamano
2026-05-11 7:45 ` René Scharfe
2026-05-11 8:30 ` Junio C Hamano
2026-05-11 19:20 ` [PATCH v2] " Samo Pogačnik
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=e8257951-4ea7-40ba-8043-f4f2a080b70b@web.de \
--to=l.s.r@web.de \
--cc=git@vger.kernel.org \
--cc=owen@owenstephens.co.uk \
--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