Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:54970 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 87982 invoked from network); 26 Aug 2011 08:34:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 Aug 2011 08:34:13 -0000 Authentication-Results: pb1.pair.com header.from=lists@rotorised.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=lists@rotorised.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain rotorised.com from 203.88.115.241 cause and error) X-PHP-List-Original-Sender: lists@rotorised.com X-Host-Fingerprint: 203.88.115.241 ironport1-mx.cbr1.mail-filtering.com.au Received: from [203.88.115.241] ([203.88.115.241:42506] helo=ironport1-mx.cbr1.mail-filtering.com.au) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 2E/C1-12710-18A575E4 for ; Fri, 26 Aug 2011 04:34:11 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgsHACtaV06va78L/2dsb2JhbABDhEyUM5AMgUABAQUjVRELGAICBRYLAgIJAwIBAgFFEwYCAQGHcqhKkVmBLIQPgREEmCeMAg X-IronPort-AV: E=Sophos;i="4.68,284,1312120800"; d="scan'208";a="473225436" Received: from ju001lcs02.dfw.the-server.net.au (HELO ju001lcs02.dfw.the-server.com.au) ([175.107.191.11]) by ironport1-mta.cbr1.mail-filtering.com.au with ESMTP; 26 Aug 2011 18:34:05 +1000 Received: from [121.208.5.54] (helo=[192.168.0.2]) by ju001lcs02.dfw.the-server.com.au with esmtpa (Exim 4.69) (envelope-from ) id 1QwrrW-0001gj-Pz for internals@lists.php.net; Fri, 26 Aug 2011 18:34:04 +1000 Message-ID: <4E575A95.9050804@rotorised.com> Date: Fri, 26 Aug 2011 18:34:29 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20110624 Thunderbird/5.0 MIME-Version: 1.0 To: internals@lists.php.net References: <4E56E068.8030502@gmail.com> <4E5741CE.4000809@lsces.co.uk> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] [VOTE] Choosing a distributed version control system for PHP From: lists@rotorised.com (Ryan McCue) Ferenc Kovacs wrote: > which is pointless if we can't easily accept/merge the pull requests > from the github clone. :/ You can very easily accept pull requests from GitHub even if you're not working on GitHub. e.g. I've been working on my own PHP fork, and have submitted a pull request to the PHP project. My repo is at https://github.com/rmccue/my-php-fork in the master branch. $ git remote add github-rmccue git@github.com:rmccue/my-php-fork.git $ git fetch github-rmccue $ git merge github-rmccue $ git push php-src master The only difference as far as pull requests go is the one-click interface on the GitHub site (which I don't like personally, since you can't test before pushing). -- Ryan McCue