Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:47285 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 40599 invoked from network); 15 Mar 2010 05:56:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Mar 2010 05:56:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=hermanradtke@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=hermanradtke@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.218.216 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: hermanradtke@gmail.com X-Host-Fingerprint: 209.85.218.216 mail-bw0-f216.google.com Received: from [209.85.218.216] ([209.85.218.216:45463] helo=mail-bw0-f216.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 4E/9D-07348-AFBCD9B4 for ; Mon, 15 Mar 2010 00:56:11 -0500 Received: by bwz8 with SMTP id 8so2746448bwz.23 for ; Sun, 14 Mar 2010 22:56:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=jgYO1ExLAf4hBqp/+X0O+OTCRZk1mi7T37YReuZFotY=; b=s/BOohtEN8vWyZ561Jm8xYb5K+CtK9+9f8fLwpnkNuCojnz0btRy6WLX0W/KH57bHb ND2CKg5oMKppeNFXM7u00VPNI7gLG/IcCK7/2oyROvg/sLfk5TguVsd9g0uACGyUg3m/ LtOYYFCB6dC5aDhd5wyLEAvRpTqAygGUuWBxI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=qe19qm+5Waa9BBkZQPHkPbOfHY2dK45GRXBU8loavgimTCLjL0HyfGNUc2qmhwE21u Afxn2vYEaKbCGTyLjM+93FF/fkidravyndkuondslWBy2izLdiD7lzoLpml0K+47lb3w +Ej8CnfJ7VRXbaPXQxHzpyaiO/NUqrWUwZMYw= MIME-Version: 1.0 Received: by 10.204.33.215 with SMTP id i23mr5485316bkd.86.1268632567512; Sun, 14 Mar 2010 22:56:07 -0700 (PDT) In-Reply-To: References: <36D0BC9D-72BA-4087-9088-A054F0E82A52@pooteeweet.org> Date: Sun, 14 Mar 2010 22:56:07 -0700 Message-ID: To: Moriyoshi Koizumi , internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Re: moving forward From: hermanradtke@gmail.com (Herman Radtke) > There are a number of ways to share your branches with others. =C2=A0At > least you can do it by pushing your local changesets to some remote > repository. =C2=A0I've actually been experimenting with modified PHP core > with some language features added by forking the mirror on github.com > [1]. =C2=A0I've never felt any inconvenience there. =C2=A0I really apprec= iate > those who set up the mirror. Yes, this is possible, but in my experience branch sharing quickly falls apart in practice. If I make some change to foo.c, push it to your branch and then later on do a rebase to update from svn I just rewrote history. The commit hash you have for foo.c is now different than mine. Now sure you can also rebase, but what if you are away? I am stuck until you return. Or what if you have a commit to foo.c that is made after my commit, but updating from svn creates a conflict you need to resolve? You then again rewrite history and now I have to sync back up. And good luck if one of us cherry-picks. I think git svn does a great job for individuals working solo on a project, but for me it starts to become too tedious when groups of people are passing around branches. Or maybe I am just doing it all wrong? --=20 Herman Radtke hermanradtke@gmail.com | http://hermanradtke.com