Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:59049 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 71586 invoked from network); 19 Mar 2012 18:55:05 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Mar 2012 18:55:05 -0000 Authentication-Results: pb1.pair.com header.from=simonsimcity@googlemail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=simonsimcity@googlemail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.213.170 as permitted sender) X-PHP-List-Original-Sender: simonsimcity@googlemail.com X-Host-Fingerprint: 209.85.213.170 mail-yx0-f170.google.com Received: from [209.85.213.170] ([209.85.213.170:34659] helo=mail-yx0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B6/72-59625-801876F4 for ; Mon, 19 Mar 2012 13:55:05 -0500 Received: by yenl5 with SMTP id l5so6492665yen.29 for ; Mon, 19 Mar 2012 11:55:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=5boj7Ph3AaEtV0y5ZhKrxnkBeLaxCq9ghZfDlToY6B8=; b=QfABVvIf7oxaXbkmb4rqVcptRjDgJ7dx2jQ9+wQaS4EADEaV0MZqpNeYdnR+tijLhs TtONjeSE0wKjK6q07aYshml/E+CjmosLlHUrlm2hIr1if/RNvGdxAfrbs7pC8k2/Vk2q MFjAWywYkylSmlnLRT61uZDElUbH4IHt8qrW3X9276AjR39JWPg2GGHMO3skUm5pEhs7 +qKhesat2wNY2q7mRz1CLuO1LCVMtjtwZlPjLQ6CaxcwW01Niq5lTE6+0h30K3DlVMuP XLt9KwlcthmpWWyYV/y4ut9x2WJ7RUN3OVvz662YmRGItJH9QQfW0DzdXO+7AnDmpx8X YJQA== MIME-Version: 1.0 Received: by 10.60.4.106 with SMTP id j10mr14538023oej.47.1332183301802; Mon, 19 Mar 2012 11:55:01 -0700 (PDT) Received: by 10.60.18.162 with HTTP; Mon, 19 Mar 2012 11:55:01 -0700 (PDT) In-Reply-To: References: Date: Mon, 19 Mar 2012 19:55:01 +0100 Message-ID: To: Kris Craig Cc: David Soria Parra , internals@lists.php.net Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] php-src is now on git From: simonsimcity@googlemail.com (Simon Schick) 2012/3/19 Kris Craig : > Hey, > > Could we modify the workflow to recommend using the "--no-ff" switch when > merging in a feature branch? =C2=A0This is by and large the recommended a= pproach > as it preserves the feature branch's commit history, making it > *much*easier to sort through complex features that contain numerous > commits. > > --Kris Hi, Kris I'd instead suggest to execute the following command in the git-repository: git config --add merge.ff false Then you do not have to add --no-ff to every merge-command you're doing. You could even set it per branch if you want :) (just to round it up ..) http://stackoverflow.com/questions/2500296/can-i-make-fast-forwarding-be-of= f-by-default-in-git Bye Simon