From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.2 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD, STOX_REPLY_TYPE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id C889B1FA14 for ; Fri, 26 May 2017 20:01:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S944824AbdEZUBD (ORCPT ); Fri, 26 May 2017 16:01:03 -0400 Received: from smtp-out-4.talktalk.net ([62.24.135.68]:35088 "EHLO smtp-out-4.talktalk.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934332AbdEZUBB (ORCPT ); Fri, 26 May 2017 16:01:01 -0400 Received: from PhilipOakley ([92.31.218.76]) by smtp.talktalk.net with SMTP id ELPtdx2lYcpskELPvd0wTo; Fri, 26 May 2017 21:00:59 +0100 X-Originating-IP: [92.31.218.76] X-Spam: 0 X-OAuthority: v=2.2 cv=ILRAMUnG c=1 sm=1 tr=0 a=e6L6E7eW+5Nb7SO+DvSdIg==:117 a=e6L6E7eW+5Nb7SO+DvSdIg==:17 a=IkcTkHD0fZMA:10 a=PKzvZo6CAAAA:8 a=gFvFdXDMSmaRUvh_Q6cA:9 a=QEXdDO2ut3YA:10 a=q92HNjYiIAC_jH7JDaYf:22 Message-ID: Reply-To: "Philip Oakley" From: "Philip Oakley" To: "Jeff King" , "Junio C Hamano" Cc: =?UTF-8?Q?F=C3=A9lix_Saparelli?= , References: <76BD8B6A1511438B8CCB79C616F3BC5B@PhilipOakley> <20170524141947.2gguzcvyu6lch373@sigill.intra.peff.net> <20170525155924.hk5jskennph6tta3@sigill.intra.peff.net> <20170525191115.tqd6zlj5mxqls4wp@sigill.intra.peff.net> Subject: Re: [Non-Bug] cloning a repository with a default MASTER branch tries to check out the master branch Date: Fri, 26 May 2017 21:00:57 +0100 Organization: OPDS MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="UTF-8"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-CMAE-Envelope: MS4wfDCie5nrfbzZzmaK2/bqmgpjD8ECFCPNEa34OtT5qh2vWHFMgWhnkH03NR/maLzocj2z4s9nEVkallhpD5d1gIPHogUkVfKiRATyjqUqXCr1ImsJo/7M qKEtHor6bmVDni7sYr3T37cjDTxrxydhy1/bBzL1gIuUgdyZFZUWbpgeM2MakkHDPYOHxIopJd+ftMUScgkDtfmaeaLB22Swg2vC9nRgT/QtFrqcZXmkOfNb MIBJGA3mImJ8x9ynKXVhvQ== Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org been trying to keep up... From: "Jeff King" > On Thu, May 25, 2017 at 11:59:24AM -0400, Jeff King wrote: > >> The just-HEAD case could look like: > > This patch does work, in the sense that upload-pack advertises the > unborn HEAD symref. But the client doesn't actually do anything with it. > The capability parsing happens in get_remote_heads(), which passes the > data out by adding an annotation to the "struct ref" list. But of course > we have no HEAD ref to annotate. > > So either get_remote_heads() would have to start returning a bogus HEAD > ref (with a null sha1, I guess, which all callers would have to > recognize). Or clone (and probably "remote set-head -a") would have to > start reaching across the transport-module boundary and asking for any > symref values for "HEAD". I'm not excited about more special-casing of > "HEAD", though. In theory we'd want this for other symrefs in the long > run, and it would be nice if clients were ready to handle that (even if > the protocol isn't quite there). > > I dunno. I was thinking there might be a quick tweak, but I'm wondering > if this arcane case is worth the restructuring we'd have to do to > support it. It only comes up when you've moved the server repo's HEAD to > an unborn branch _and_ you have other refs (since otherwise we don't > even send capabilities at all!). > > -Peff My original comment regarding Felix's report was based on when I was looking at the bundle code's disambiguation of refs which matched HEAD's sha1. Hence I had a mis-remembered impression that the HEAD - symref matching was avaibable. At that time, Junio had suggested that, at least in the bundle file, the HEAD symref could be advertised immediately after a nul on the ref line. At least for regular git, the sha1and symref value would included in the read line, and the current string processing [1] would not notice the extra symref data. This extra data could then be read (if present) from the end of the line, and the HEAD symref set. What I then noticed (but didn't report to the list) was the option of adding that extra info to the PKLINE protocol. In technical\pack-protocol.txt #L136;158-160 Reference Discovery: If HEAD is a valid ref, HEAD MUST appear as the first advertised ref. If HEAD is not a valid ref, HEAD MUST NOT appear in the advertisement list at all, but other refs may still appear. - So, (for both upload pack, and bundle refs) the place to hide the HEAD is after the later ref that HEAD points to. e.g.(updating the example at #L147): 00441d3fcd5ced445d1abc402225c0b8a1299641f497 refs/heads/integration\0HEAD[LF] The potential issue is if there is a passed ref that is HEAD, but that HEAD itself isn't passed (especially for bundle) <\from my notes> -- However given the discussion about an unborn HEAD, the option here would be to also pass the NULL sha for the symref and then add the annotation 'HEAD' after an extra \0, in the same way that an active symref could be annotated with the '\0HEAD'. This would kill two birds with one stone! These are still protocol changes but should squeeze into the existing processing using the \0 trick. In the absence of the information, and the multi-use of the warning function, the current message is possible the best we can get. Philip [1] the question would be whether other git versions also use the same string processing so could be 'fooled' in the same way? I'd be interested to know if that was a possibility.