Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:59081 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 51458 invoked from network); 20 Mar 2012 17:37:04 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Mar 2012 17:37:04 -0000 Authentication-Results: pb1.pair.com header.from=kris.craig@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=kris.craig@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.170 as permitted sender) X-PHP-List-Original-Sender: kris.craig@gmail.com X-Host-Fingerprint: 74.125.82.170 mail-we0-f170.google.com Received: from [74.125.82.170] ([74.125.82.170:51683] helo=mail-we0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 70/A0-48454-E30C86F4 for ; Tue, 20 Mar 2012 12:37:02 -0500 Received: by werh12 with SMTP id h12so318377wer.29 for ; Tue, 20 Mar 2012 10:36:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Y/Mr4cDZWPgC/HBwAjMTVO4f+wEFXOI3+LZQnlLGonI=; b=p8CI41JN+yMBUCtb5ur5mfC0q7KP9fRa/0VpVmDJMoGDT8xSYvLU6cDbQ9ah3Q8xdQ wdtZ8QIcG34JcbrFtucThx49fYv/XDqbzxgQPyUW/35MQs1/ntbpU6fSfIS4IOgHAxuA dEf/QncFj6pk9m1eCCkHayOTovbfIkMYB3xyDsCbPTN3M9rjSMknYM/ryiqXkUKTEMNJ UueGNeyfryX7ttHNKWCoEt6tX7D+mYL1Xdc0ynU7Kd4WpSf3WUJqnx0G6NBAJ8oJU7Mt IpnjfcPDhTQnyk6i2x6OpUCY03GjurLtkl4drFA0KMT2ZRj7MKUb7/0IbuASzj9N13cW jcgg== MIME-Version: 1.0 Received: by 10.180.24.7 with SMTP id q7mr30852962wif.11.1332264540900; Tue, 20 Mar 2012 10:29:00 -0700 (PDT) Received: by 10.223.116.141 with HTTP; Tue, 20 Mar 2012 10:29:00 -0700 (PDT) In-Reply-To: References: Date: Tue, 20 Mar 2012 10:29:00 -0700 Message-ID: To: Paul Dragoonis Cc: David Soria Parra , internals@lists.php.net Content-Type: multipart/alternative; boundary=f46d043892abb50e1a04bbb002c9 Subject: Re: [PHP-DEV] Github Pull Request From: kris.craig@gmail.com (Kris Craig) --f46d043892abb50e1a04bbb002c9 Content-Type: text/plain; charset=ISO-8859-1 Quick clarification: On Tue, Mar 20, 2012 at 7:11 AM, Paul Dragoonis wrote: > thanks dsp and johannes for this nice tool. > > On Tue, Mar 20, 2012 at 10:16 AM, David Soria Parra wrote: > > Hi > > > > with the php-src migrated to git we start receiving > > pull request on github. A few things to notice: > > > > - developers can pull the requests as described here: > > https://wiki.php.net/vcs/gitfaq#github_pull_requests > > - people with valid github accounts can comment > > on pull request > > - people with valid php accounts can close pull > > request using the tool http://qa.php.net/pulls. > > Thank you joahnnes for writing it. > > > > Before pulling make sure: > > > > - the pull request contains appropriate tests for > > the change > > - the commit message contains a good and precise > > description what was changed and why > > > > ensure that you pull it into the right branch. > > > > Pull request notifications are send to the > > git-pulls@lists.php.net mailinglist. > > > > Note that we DONT hand out access to the > > github repository and will we not add > > you to the PHP organization on github. > > > > - David > > > > -- > > PHP Internals - PHP Runtime Development Mailing List > > To unsubscribe, visit: http://www.php.net/unsub.php > > > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > Are you referring to "push" requests? I.e. are you talking about posting commits you've made locally to the remote Git repo? If so, then in Git this is referred to as a "push," not a "pull." I bring this up because, in Git, a "pull" actually refers to something entirely different. A pull refers to the exact opposite, in fact; i.e. using Git to "download" a branch from a remote repo. In other words, you "pull" a branch from remote to local, make your commits/merges/whatever, then "push" that branch back up to the remote repo. If we start referring to pushes as pulls, that will inevitably lead to a ton of unnecessary confusion. On the other hand, by "pull request" are you simply referring to somebody else requesting that you "pull" their submission and merge/push it? If so, I get it, but I really think we should come up with another term to describe it because it really does sound kinda backwards IMHO. I just woke up less than an hour ago though so maybe I'm just groggy lol.... --Kris --f46d043892abb50e1a04bbb002c9--