From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 3520E1F5AE for ; Mon, 3 Aug 2020 19:40:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728419AbgHCTkI (ORCPT ); Mon, 3 Aug 2020 15:40:08 -0400 Received: from cloud.peff.net ([104.130.231.41]:46686 "EHLO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727813AbgHCTkI (ORCPT ); Mon, 3 Aug 2020 15:40:08 -0400 Received: (qmail 28863 invoked by uid 109); 3 Aug 2020 19:40:07 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with ESMTP; Mon, 03 Aug 2020 19:40:07 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 3693 invoked by uid 111); 3 Aug 2020 19:40:07 -0000 Received: from coredump.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.2) by peff.net (qpsmtpd/0.94) with (TLS_AES_256_GCM_SHA384 encrypted) ESMTPS; Mon, 03 Aug 2020 15:40:07 -0400 Authentication-Results: peff.net; auth=none Date: Mon, 3 Aug 2020 15:40:06 -0400 From: Jeff King To: Taylor Blau Cc: Matt McCutchen , git@vger.kernel.org Subject: Re: Renaming the "master" branch without breaking existing clones Message-ID: <20200803194006.GA2715275@coredump.intra.peff.net> References: <20200803160051.GA50799@syl.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200803160051.GA50799@syl.lan> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Mon, Aug 03, 2020 at 12:00:51PM -0400, Taylor Blau wrote: > This is more-or-less what I was proposing in the message that I linked > above. Maybe a more solidified proposal might look something as follows: > > - We could introduce a mechanism to mark certain refs as aliases to > other refs. For example, a remote might publish its > 'refs/heads/master' as an alias to 'refs/heads/main', so that any > reads or writes to the former get applied to the latter > transparently. I think symrefs do this already. Try this: git init parent git -C parent checkout -b main git -C parent commit --allow-empty -m one git -C parent symbolic-ref refs/heads/master refs/heads/main git clone parent clone cd clone GIT_TRACE_PACKET=1 git ls-remote 2>&1 >/dev/null | perl -lne '/git - A ref alias can be annotated to say "I am a transition ref alias", > i.e., that clients should be taught to rename their copy of 'master' > to 'main' (and update remote-tracking refs accordingly). It's not specifically marked as a transition, but a client could act on the symref advertisement above. -Peff