Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:57673 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 39186 invoked from network); 3 Feb 2012 23:38:18 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Feb 2012 23:38:18 -0000 X-Host-Fingerprint: 217.114.211.68 unknown Date: Fri, 03 Feb 2012 18:38:16 -0500 Received: from [217.114.211.68] ([217.114.211.68:16872] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 70/74-08838-8EF6C2F4 for ; Fri, 03 Feb 2012 18:38:16 -0500 To: internals@lists.php.net User-Agent: slrn/0.9.9p1 (SunOS) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: X-Posted-By: 217.114.211.68 Subject: Git Migration: A short update on github pull requests From: dsp@php.net (David Soria Parra) Hi Internals, the Git migration is not finished yet and won't be finished for the next weeks but we are constantly working on improvements. There is now a new PHP Mailinglist called git-pulls@lists.php.net. All pull requests requests created for the github.com/php user will go to this mailinglist. If you have commit rights to a mirrored PHP repository you can pull the requests and push it to the official repositories. But please note the following restrictions: (1) You cannot use the Merge button on github for that. The PHP Organization on PHP will not accept contributors. It's only for mirroring! (2) Pull the request (e.g. PR 23) using $ git fetch git://github.com/php/web-php pull/23/head:pull-request/23 $ git log -p pull-request/23 # REVIEW IT $ git merge pull-request/23 # Merge it, add a GOOD commit message $ make test # you better don't forget that $ git push origin master # everything okay? good, let's push it (3) The pull reuqest will be automtaically closed. Closing a pull request without merging is not possible as this is restricted to PHP organization member. Due to the nature of our setup we cannot invite people to that organization. If only one guy accidentally hits the Merge button the whole setup is screwed. dsp out