From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 30175 invoked from network); 14 Jan 2022 09:06:34 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 14 Jan 2022 09:06:34 -0000 Received: (qmail 20052 invoked by uid 550); 14 Jan 2022 09:06:11 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 1139 invoked from network); 13 Jan 2022 22:24:17 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=cNIM0cGZFqkQCEV3A4tkf0M2zDRm0LygBFSSDQxDBik=; b=PIYTpSehMnbJc4yedgjeQe2rooo9wNgFhFczjClV+Z0DEza6jewHUAqZ3yq1QSqarc 2gDQBCVMOsIlAciVBrtIiSYmXUgrnblRWkjjtQBmrAMQKFqwYItJefaE6Rdnd/yjXMoI Q0m/aiK+YFimwNJkXnyofryyORBGs0f4TBvPY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=cNIM0cGZFqkQCEV3A4tkf0M2zDRm0LygBFSSDQxDBik=; b=u4T9KuHOZRYpecDa7Men+ZXaIrS6Rx5v608yu36nXsP0n6lBRqnO9K4J4ZLkTCXyt9 K0eoRbzLKbGIkqhSOMW+gmpQ4w180WfgJ22h4TnyIQFApXFB4LNE9JMVLLXSsNYBrmqq mhdITRWs+WNbaL1P5rdNs+4k2DU1m0nvgnDSteIGMpj2I9OLWDT8+omwgjvSEt6pwr2w 6Y5MvFIINfA0gg7jB2YbYAjB0S+uMLmbTPO7qDyal2p4O1wegvdR6Hzr7wVLwKzdSSuh nTj9Gw1leCgVgfE3dOOkdz0ec+S1Dp25MAkU88yeWTHBWYfrQx5e7ss4UfTlJTgx4qny 6qxw== X-Gm-Message-State: AOAM5300nJu9UYKcLpdjOUU9T+0xRi2QIPveYEE06Sj0Cj74G6FwmLkf iU7gKA4LLel7bG1BcKIcAJM423DYSHQFg2f3P40SGg== X-Google-Smtp-Source: ABdhPJw9FYNezVgz7bWEH0rDIFgr5SHduVM6qtPkApgNjf7whl6aqT72EtUFCD3No0CchSByQebbIga1yZA5xTq7cbI= X-Received: by 2002:a05:622a:3c7:: with SMTP id k7mr5487386qtx.201.1642112645675; Thu, 13 Jan 2022 14:24:05 -0800 (PST) MIME-Version: 1.0 References: <20220113215343.rople6ccc43zdxzn@eve> <3b3fc183-5cdc-1cf1-6b2e-8f01aeac9ceb@gmail.com> In-Reply-To: <3b3fc183-5cdc-1cf1-6b2e-8f01aeac9ceb@gmail.com> From: Markus Mayer Date: Thu, 13 Jan 2022 14:23:54 -0800 Message-ID: To: Florian Fainelli Cc: musl@lists.openwall.com, Alyssa Ross , Rich Felker Content-Type: text/plain; charset="UTF-8" Subject: Re: [musl] git cloning over https? On Thu, 13 Jan 2022 at 14:12, Florian Fainelli wrote: > > > > On 1/13/2022 1:53 PM, Alyssa Ross wrote: > > Hi, > > > > On Thu, Jan 13, 2022 at 01:44:23PM -0800, Florian Fainelli wrote: > >> Would you consider allowing git.musl-libc.org to serve the repositories over > >> https rather than git? For some obscure reasons some corporate environments > >> do block the git protocol whereas https goes through. > > > > You should be able to git clone https://git.musl-libc.org/cgit/musl. > > It is quite slow though -- since it looks like cgit is serving, this > > is presumably because cgit's built-in git serving feature only supports > > the legacy ("dumb") HTTP program, not the fast ("smart") one used by > > git http-backend, which would be a nice infrastructure improvement. > > I don't seem to be able to get cloning from cgit to work either and not > doing this in the corporate environment I vaguely mentioned but over my > home residential provider (Cox). git:// works. Interestingly, it worked for me. Kind of. It is *extremely* slow. It took about 15 minutes to clone the repo, which isn't big at all and should take no more than a minute to transfer (likely a lot less). Interestingly, the local clone created via cgit and https is 52 MB in size while a clone via the git:// protocol is only 20 MB. Something "interesting" seems to be happening when cloning via cgit. The repo does seem to be fully functional, though. Regards, -Markus