Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:76928 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 74212 invoked from network); 28 Aug 2014 20:07:14 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Aug 2014 20:07:14 -0000 Authentication-Results: pb1.pair.com smtp.mail=are.you.winning@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=are.you.winning@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.216.171 as permitted sender) X-PHP-List-Original-Sender: are.you.winning@gmail.com X-Host-Fingerprint: 209.85.216.171 mail-qc0-f171.google.com Received: from [209.85.216.171] ([209.85.216.171:43628] helo=mail-qc0-f171.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 9E/D7-28393-1FB8FF35 for ; Thu, 28 Aug 2014 16:07:13 -0400 Received: by mail-qc0-f171.google.com with SMTP id x3so1388354qcv.16 for ; Thu, 28 Aug 2014 13:07:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=YSPGoy9VKcZXLanJDpxleFumigcFdv0LxFcO8Qjg+FU=; b=lcvAfrraps0kAnsZkRZMEHrMOlkyWyokTMNrs/ChDMb63Z+omvJPOllW8ip3nCVK9P SeE2SktdX3Kk8VcNE7rC1aFTbELqskKTVB///RG/c+ka/jBUpQ6Jxa4SjpVAMgqy0KZu EJa1iYfOsG9PglLN8Gad2i1OP6ntIHQUNIdysYZ3ZHgRqjDuDCZG7K7moUcI0NClmFyb plaWuWt2fAYp/KQjZc6chYLocuCWPgQQFqYdGskEsLxU0350aN2zCZWUi+OaGLYuvjEU wv+BBVLplGu2SSwYKRttw9aRFzCv6zURjS7M0sjrRw+jisr7T1Q9vAPBf63gDaLAexer /TIQ== MIME-Version: 1.0 X-Received: by 10.229.232.1 with SMTP id js1mr10366482qcb.20.1409256430855; Thu, 28 Aug 2014 13:07:10 -0700 (PDT) Sender: are.you.winning@gmail.com Received: by 10.141.28.193 with HTTP; Thu, 28 Aug 2014 13:07:10 -0700 (PDT) In-Reply-To: References: Date: Thu, 28 Aug 2014 21:07:10 +0100 X-Google-Sender-Auth: -N_uJmjYpZHWvKD8HwrUB00epAI Message-ID: To: Julien Pauli Cc: PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Cleaning 5.3 git branches ? From: daverandom@php.net (Chris Wright) On 28 August 2014 19:55, Julien Pauli wrote: > Hello, > > We all know 5.3 is now EOL. > > Looking at git branches, 5.0, 5.1 and 5.2 still have their respective > main branches (which is all right and good). > > However, they dont have their release branch references (5.1.1 , 5.1.2 > etc...) , however they still show their own release tags, which is > also all right. > > As a reminder, release *branches* (not the tags) are used by the RMs > to actually release the version. > RMs branch from the main repo into a release branch, and apply their > RM-managing-stuff commits as well as backport eventual commits from > the main branch, for CVEs, for example. > > Those release branches are here just for the release, and are no > longer needed at all after the release has been released, because > every release owns its own final git tag. Based on this, it doesn't seem like there's any point in keeping the branches at all after the tag is created. I would take this proposal a step further and suggest a policy of deleting the previous release branch when a new release is made (i.e. when 5.6.1 is tagged, the 5.6.0 branch would be deleted). The workflow described dictates that no changes should be made to a branch after its corresponding tag is created, and github provides a decent, universally accessible and familiar UI for browsing the code of a particular tag. I would be in favour of keeping hold of a branch until the following release is created (rather than deleting it when that release is made) as "emergency" releases - for example when a major security flaw is discovered after a release - could be facilitated by keeping hold of the old branch, although even this reasoning is highly questionable. I really don't see the need to keep any release branches hanging around cluttering up the place. Thanks, Chris