Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:58578 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 5188 invoked from network); 4 Mar 2012 14:51:58 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 4 Mar 2012 14:51:58 -0000 Authentication-Results: pb1.pair.com header.from=jeremiah.dodds@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=jeremiah.dodds@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.210.45 as permitted sender) X-PHP-List-Original-Sender: jeremiah.dodds@gmail.com X-Host-Fingerprint: 209.85.210.45 mail-pz0-f45.google.com Received: from [209.85.210.45] ([209.85.210.45:52860] helo=mail-pz0-f45.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 38/8E-12048-C81835F4 for ; Sun, 04 Mar 2012 09:51:57 -0500 Received: by dadp14 with SMTP id p14so2624348dad.18 for ; Sun, 04 Mar 2012 06:51:53 -0800 (PST) Received-SPF: pass (google.com: domain of jeremiah.dodds@gmail.com designates 10.68.232.103 as permitted sender) client-ip=10.68.232.103; Authentication-Results: mr.google.com; spf=pass (google.com: domain of jeremiah.dodds@gmail.com designates 10.68.232.103 as permitted sender) smtp.mail=jeremiah.dodds@gmail.com; dkim=pass header.i=jeremiah.dodds@gmail.com Received: from mr.google.com ([10.68.232.103]) by 10.68.232.103 with SMTP id tn7mr38448543pbc.54.1330872713701 (num_hops = 1); Sun, 04 Mar 2012 06:51:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:references:date:in-reply-to:message-id:user-agent :mime-version:content-type; bh=VTugtw+A5getNdA2Ykp4PWqRusnWy2mgTPVrjvkN2I0=; b=cIPkmgcEfq1Xu0buqUDv3DGELRZWAElyVjgK4faGQ7vKYt7t5Pd9ceA1f+BEtnK3c3 zQOExRQ5Zs/KCSUpRtAwZfLqrhBkyQBSqYTyRYCOrmD3FFpw3D+Mjs3F8i17De0xy9X3 zp8I7Ga4uWOAhrrsaBN/fMG3VCCo9v4yTn++J8NpgsdKVOwybkgNNEkJxZd9re7oT4Pu Vy4Ru+7bDDoZf3WhIEe48ckc934o66OP6dHV53KY1hX/NzWpttc27HbfpVCIbeoVsDVy vr+IW5jWvu77Zl4MlcjUIWtFKZfhrlQw249BWh8+PFJ3JMXhPQBUp5RRMsIRm+1lvHX3 g/hg== Received: by 10.68.232.103 with SMTP id tn7mr32860694pbc.54.1330872713555; Sun, 04 Mar 2012 06:51:53 -0800 (PST) Received: from destructor (ip98-180-233-170.cl.ri.cox.net. [98.180.233.170]) by mx.google.com with ESMTPS id q1sm10620145pbq.68.2012.03.04.06.51.51 (version=SSLv3 cipher=OTHER); Sun, 04 Mar 2012 06:51:52 -0800 (PST) To: internals@lists.php.net References: <0BDFACD9-97EA-47CC-B570-6BF20594AF95@stefan-marr.de> Date: Sun, 04 Mar 2012 09:51:48 -0500 In-Reply-To: <0BDFACD9-97EA-47CC-B570-6BF20594AF95@stefan-marr.de> (Stefan Marr's message of "Sun, 4 Mar 2012 14:09:02 +0100") Message-ID: <8762ekqv0b.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [PHP-DEV] Git Migration: Status Update From: jeremiah.dodds@gmail.com Stefan Marr writes: > Hi David: > > On 03 Mar 2012, at 22:58, David Soria Parra wrote: > >> (1) Pull requests on github.com go to the git-pull mailinglist. >> Make sure you subscribe to it. >> (2) Johannes is working on an interface that allows people with >> valid PHP user accounts to close pull requests. >> (2) Fix the bugsweb integration, so that references to bugs inside >> the commits will work. Florian is working on it. >> (4) FAQ > > Will there be an integration with pull requests and the bug tracker, or remains attaching patches the preferred way? > > What is the new preferred replacement for a sparse SVN checkout + single commit > per change? I'm not familiar enough with PHPs workflow to answer this in full, but a single commit per change can be done by developing a feature in a branch, and then merging it with the '--squash' option, which does the merge in your working directory, but does not create a commit for it, allowing you to bring in multiple commits from your branch(es) into one commit that is going to be shared in public history.