Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:77680 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 10198 invoked from network); 26 Sep 2014 15:36:44 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 Sep 2014 15:36:44 -0000 Authentication-Results: pb1.pair.com smtp.mail=narf@devilix.net; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=narf@devilix.net; sender-id=pass Received-SPF: pass (pb1.pair.com: domain devilix.net designates 209.85.218.47 as permitted sender) X-PHP-List-Original-Sender: narf@devilix.net X-Host-Fingerprint: 209.85.218.47 mail-oi0-f47.google.com Received: from [209.85.218.47] ([209.85.218.47:57242] helo=mail-oi0-f47.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B4/41-02658-A0885245 for ; Fri, 26 Sep 2014 11:36:43 -0400 Received: by mail-oi0-f47.google.com with SMTP id g201so1807814oib.34 for ; Fri, 26 Sep 2014 08:36:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=devilix.net; s=google; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=wN1mSE9109P+qhF8d07wR1tIemWJHBTPqBbADQXeMS8=; b=cK4AEIPrXgzX19Tcn6EP9BVj15BkBqF1Tl9cAwsp7WzgqxjoY7ZdXmtc7OEVb8/Lto X2KiTbkv3a8RQnJ36amHPy5WtHfnR0vF3tXBDsyashnny6bcNr+pZPUjdxoQEp5NRCxR 2HuFVoCyDnh4014cJ+OyfgxcwE3STw6i4NxkU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=wN1mSE9109P+qhF8d07wR1tIemWJHBTPqBbADQXeMS8=; b=G3nsfTnS7nQduQyJ4Whd8P/nIBt5DZ3SsGOjV6jBhPAGxPNlsXJNwbcKj7d+rKa+fE xH/PNTg6BqgIYijbnlM42/gLqWKW0AcTtlB2yyjRbloJiuA4eVROwhJoAkSHFuPUFdca hlxnkkTssUWk9+rPHfLIWnYiYe2GXskMiPGxgenHJC4lhYmrAF5XIMFoyLVAXcc/P/r+ JHp23VIaZtUAJkvugRT68y9g0i00og2v4SsZdLZHIiy+TcvAyd8eRHOT4N7HiuJ/lPEc ln+evizfMSaX0cwBQRYkIjx7dj3Gu/aU8WKUNFGyw1vIyezaEODH98RgfJjqSYaiHmWs lIEg== X-Gm-Message-State: ALoCoQl9WSvvr+cbe2/GLCHoSeX8zSmWRrq4xTDALqmDDBvOBDTkeGWk6p1enJPHI1drlRXqfOsX MIME-Version: 1.0 X-Received: by 10.60.174.197 with SMTP id bu5mr22376494oec.3.1411745795499; Fri, 26 Sep 2014 08:36:35 -0700 (PDT) Received: by 10.202.75.205 with HTTP; Fri, 26 Sep 2014 08:36:35 -0700 (PDT) In-Reply-To: References: Date: Fri, 26 Sep 2014 18:36:35 +0300 Message-ID: To: Derick Rethans Cc: Ferenc Kovacs , Florian Margaine , PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Should we dev on master then backport, or the other way? From: narf@devilix.net (Andrey Andreev) On Fri, Sep 26, 2014 at 6:20 PM, Derick Rethans wrote: > On Fri, 26 Sep 2014, Ferenc Kovacs wrote: > >> On Fri, Sep 26, 2014 at 1:29 PM, Florian Margaine >> wrote: >> >> > The question is in the title :-) >> > >> > As far as I know, most projects follow this convention: develop on >> > the master branch, then backport the fixes/features to older >> > versions. >> > >> > I had a discussion with another core dev who told me he did the >> > opposite: develop on PHP-5.5, then move the fix/feature up to the >> > new branches (first PHP-5.6, then master). >> > >> > Is there a convention for php-src? Or is it "whatever the dev >> > wants"? >> >> see https://wiki.php.net/vcs/gitworkflow if a change affects multiple >> branch we commit it to the lowest possible branch and merge it >> upwards. there were a recent discussion about whether or not to change >> this, as the current master (aka PHP7) has major changes which makes >> the merge everything up strategy a lot more painful, but this >> discussion didn't reached a consensus so there are no change in the >> old workflow. > > But we really should fix this, as merging up is no fun right now. > > cheers, > Derick Hi, IMO, there's no point in trying to merge between two fairly different codebases. You could cherry-pick where appropriate, but this too will become harder while PHP7 development progresses. In a natural way, the two version trees become two separate efforts. My $0.02. Cheers, Andrey.