From: Derrick Stolee <derrickstolee@github.com>
To: Junio C Hamano <gitster@pobox.com>,
Derrick Stolee via GitGitGadget <gitgitgadget@gmail.com>
Cc: git@vger.kernel.org, me@ttaylorr.com
Subject: Re: [PATCH] clone: ignore invalid local refs in remote
Date: Thu, 21 Apr 2022 09:29:32 -0400 [thread overview]
Message-ID: <b884d627-4a81-5be9-eed5-feff3b2bd010@github.com> (raw)
In-Reply-To: <xmqqczhbo4s3.fsf@gitster.g>
On 4/20/2022 4:53 PM, Junio C Hamano wrote:
> "Derrick Stolee via GitGitGadget" <gitgitgadget@gmail.com> writes:
>
>> From: Derrick Stolee <derrickstolee@github.com>
>> Subject: Re: [PATCH] clone: ignore invalid local refs in remote
>
> After seeing the title, I expected that cloning from such a
> repository with cruft in .git/refs/ directory would issue a warning
> and succeed without these non-ref files.
>
> But that is not what is happening here?
Sorry, this title of the commit message is stale from a version
where I started making the clones succeed (but without these
bad refs). I changed my mind to only switch BUG() to die() to
avoid giving the impression that we have a "matching" repo after
the clone.
>> +test_expect_success 'local clone from repo with corrupt refs fails gracefully' '
>> + git init corrupt &&
>> + test_commit -C corrupt one &&
>> + echo a >corrupt/.git/refs/heads/topic &&
>> +
>> + test_must_fail git clone corrupt working 2>err &&
>> + grep "has a null OID" err
>> +'
>> +
>
> We keep expecting that clone _will_ fail.
>
> So the net change is that we still do not tolerate a corrupt
> repository and do not let corruption to propagate through cloning,
> but we diagnose this breakage as an error by calling die(), which
> is appropriate for dealing with runtime data error, instead of
> hitting a BUG(), which is reserved for program errors.
>
> I agree with the fixed behaviour and implementation. It just is
> that "ignore" on the title seems misleading. Other than that,
> thanks for a good finding and a clean fix.
Perhaps the commit could instead start with
clone: die() instead of BUG() on bad refs
?
Thanks,
-Stolee
next prev parent reply other threads:[~2022-04-21 13:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-18 17:12 [PATCH] clone: ignore invalid local refs in remote Derrick Stolee via GitGitGadget
2022-04-18 17:30 ` Ævar Arnfjörð Bjarmason
2022-04-20 20:53 ` Junio C Hamano
2022-04-21 13:29 ` Derrick Stolee [this message]
2022-04-21 18:00 ` Junio C Hamano
2022-04-25 13:47 ` [PATCH v2] clone: die() instead of BUG() on bad refs Derrick Stolee via GitGitGadget
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=b884d627-4a81-5be9-eed5-feff3b2bd010@github.com \
--to=derrickstolee@github.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=gitster@pobox.com \
--cc=me@ttaylorr.com \
/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;
as well as URLs for NNTP newsgroup(s).