Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:52036 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 91413 invoked from network); 28 Apr 2011 03:07:34 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Apr 2011 03:07:34 -0000 Authentication-Results: pb1.pair.com header.from=dukeofgaming@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=dukeofgaming@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.83.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: dukeofgaming@gmail.com X-Host-Fingerprint: 74.125.83.42 mail-gw0-f42.google.com Received: from [74.125.83.42] ([74.125.83.42:63843] helo=mail-gw0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id AB/B2-20607-4F9D8BD4 for ; Wed, 27 Apr 2011 23:07:33 -0400 Received: by gwb17 with SMTP id 17so1069065gwb.29 for ; Wed, 27 Apr 2011 20:07:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=D3MPUc1dJKbVrc24Kr1MAAXVyfiMil2BD9U6HtgbawM=; b=Iz1AISjo4YqPihCkPeAx5LBT/Z1dJUkmoEyzNBBW1t9bG2x+bgDPs11GKHNIUA1ff3 keb3GDkfbQqH1LStQ/ddqOqlZpeLkcJ6QMIwWee+VcNBkHPfrb27f7AEdHDu+nO0RN7J ylxI65IrDts7qJTEwlRZx1ZtBHuBdDu53iDhQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=LGVjoFMPi6WyXeJraq0Vji7n454EjHuFIYTCTTFjTjQZJaBDmNTfejC8j8Beu20p+e azW9wdoLCV1rW/OoGRVthe4KMEsrbcQEgWFdvBCYA8LajmpiscIHNxg6I0BL8HRkgjXq tIIXMuvaRS+KaKngS+oVyU0M86rVX+SBzfZSA= Received: by 10.101.63.10 with SMTP id q10mr1922178ank.61.1303960050303; Wed, 27 Apr 2011 20:07:30 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.108.6 with HTTP; Wed, 27 Apr 2011 20:07:10 -0700 (PDT) In-Reply-To: References: <4DB8CCA9.7040604@yahoo.com.au> Date: Wed, 27 Apr 2011 22:07:10 -0500 Message-ID: To: Drak Cc: "internals@lists.php.net" Content-Type: multipart/alternative; boundary=001636eee3dc99822704a1f1db16 Subject: Re: [PHP-DEV] DVCS From: dukeofgaming@gmail.com (dukeofgaming) --001636eee3dc99822704a1f1db16 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Hi, I'm not a frequent poster in the list but I thought I'd really should give my 1 cent here when I saw "popular" being an argument for using DVCSs, its not, and its neither fashion nor cargo cult, it is just a plain eye opener experience of how neither SVN or CVS are the base of all versioning (two of its creators =97Brian Fitzpatrick and Ben Collins-Sussman=97 have acknowled= ged this by saying "sorry about that" with regards to Subversion) and that better and more natural ways to collaborate and integrate code. I could provide an epically long argument here, but instead I'll link to th= e one I've already made, diagrams and graphics included =3D): http://programmers.stackexchange.com/questions/35074/im-a-subversion-geek-w= hy-i-should-consider-or-not-consider-mercurial-or-git-or/35080#35080 So, I don't want to make debate here of wether centralized is better than distributed (because the point is moot), but I think its not a good situation for the community to have a previously open door to DVCSs now closed. Perhaps a solution can be found to even open the door to Mercurial (that is an excellent place to start with DVCSs because its simplicity and straight-forwardness) in addition to git in such a way that doesn't stress the server?. Regards, David On Wed, Apr 27, 2011 at 9:40 PM, Drak wrote: > On 28 April 2011 07:55, Ben Schmidt wrote= : > > > I realise that at least for now, PHP is sticking with SVN. No problems. > > > > I realise this is not the topic of discussion but I have to say, that > overall, a switch to DVCS would make a huge difference to PHP development > life cycles. Git for one, makes contributing and integration of patches = a > completely different experience. It encourages more community > participation > without impinging on quality since you don't need to grant commit > permissions. The whole workflow of creating and integrating patches is > much > faster and more simple because you can switch context from branch to bran= ch > almost instantly allowing those with commit permissions to verify if a > contribution is worth merging or not. It's much less work than SVN and t= he > ease naturally attracts contributors. Merging is not a pita like with SV= N. > > However, given the recent security breach there is another side: Tamperin= g > with a git repository is virtually impossible because every commit hash i= s > generated from the previous ones, so if your servers were compromised > again, > a change in the past history would require alteration every single commit > hash since that change and the resulting HEAD hash would be different. > Since hashes are based on the commit contents it's just not feasible ev= en > if SHA1 was one day compromised that you could successfully tamper with a > previous commit and engineer the calculations so the current HEAD hash > remained unchanged. If a commit blob (on the file-system) was altered > manually, your git repo would simply fail to validate the next time you u= se > it. In every scenario you'd know immediately something was wrong and not > have to go looking for it commit by commit. > > Something to consider again in the future at least. > > Regards, > > Drak > --001636eee3dc99822704a1f1db16--