Newsgroups: php.cvs,php.internals Path: news.php.net Xref: news.php.net php.cvs:93237 php.internals:94589 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 66422 invoked from network); 20 Jul 2016 15:27:39 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Jul 2016 15:27:39 -0000 Authentication-Results: pb1.pair.com header.from=tyra3l@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=tyra3l@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.45 as permitted sender) X-PHP-List-Original-Sender: tyra3l@gmail.com X-Host-Fingerprint: 74.125.82.45 mail-wm0-f45.google.com Received: from [74.125.82.45] ([74.125.82.45:37865] helo=mail-wm0-f45.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 43/4F-52781-8689F875 for ; Wed, 20 Jul 2016 11:27:38 -0400 Received: by mail-wm0-f45.google.com with SMTP id i5so74225512wmg.0; Wed, 20 Jul 2016 08:27:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:from:date:message-id:subject:to; bh=Rrh0UslyuhMMt1XE1Fge6C4KOT1ANV/V6Q9St2HBgJs=; b=QtQBqdE2iowgwy9oYpAZByFbrdzhciX9TANdWY3sMR8xtk9/jnSCNRDjVHwY7al4+W tEuKVXhorrJf03c2RaX6cpyjvCBelznrzfO25KqEPVc63HTnriYMHpOyFLwGLHXXvqnS 6ZBrvWUUJTSAxrkATFT/47BAUoWe28nDj2RDOl4oIN0FnX6vFB19DHVF1Gas3X6Cu1kM IrWIdGI3X0+KmEEcl9gUFfQtZUFClJ60/0VxJUGfV7A1ozavZcq3exp5OPVoA0vz81yw iLDyWl9cZr+5pUCALVNcN/01+/w4CiYvg5DaqoZ8tLdHR3j3ONFtkPWCbyqRkoBUlLgS Bm5w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:from:date:message-id:subject :to; bh=Rrh0UslyuhMMt1XE1Fge6C4KOT1ANV/V6Q9St2HBgJs=; b=EN6r3rs0+mzZpwT6Liptxf6CS3ehN1y/mOweoMiZSrZyyiepqi/kMJXC+Gbg6T6r5s 8vsb0WAaRsoZVnhWRayHzMa3wsvJy0uUKC63gt9C8pON9hTCYLqEXkmiGMHBRgHRyzYu EVbu6kUTxJ/EViRnT+28/AbXi9MXPMfZxTHs5pgMsOH6Wg4lUwi61AwbzcoNdUe/FY/8 CLdtnVCrXV6NYIS8A8VSb7nZuxrAt+4qa4xsJCeyn4f19674yDPe2anBC+mVdzuXsRai OPaphf9FL9sWZmUA2qzQVRSR90vTMp54ILPCQNkHWNg215f98VJvPiDOKFDmlkcwVpXu AyYw== X-Gm-Message-State: ALyK8tI2/8vahX1Vyi6x6RxARfLXmqc+aZHGQbMkTX34FixnhcS+Yv407uFQxN5JkDa21Khu4y5tb8Zy4QxHww== X-Received: by 10.194.25.161 with SMTP id d1mr1903465wjg.15.1469028453916; Wed, 20 Jul 2016 08:27:33 -0700 (PDT) MIME-Version: 1.0 Sender: tyra3l@gmail.com Received: by 10.195.24.2 with HTTP; Wed, 20 Jul 2016 08:27:33 -0700 (PDT) Date: Wed, 20 Jul 2016 17:27:33 +0200 X-Google-Sender-Auth: AGfxeItJjQFVNDCeeZkoVX3AY_8 Message-ID: To: PHP Internals , "php-cvs@lists.php.net" Content-Type: multipart/alternative; boundary=047d7b67086f2925ce053812d748 Subject: force push in php-src From: tyrael@php.net (Ferenc Kovacs) --047d7b67086f2925ce053812d748 Content-Type: text/plain; charset=UTF-8 hi, we had a wrong merge in the php-src, merging master into 5.6. I've just force pushed the last good version before the bogus merge. You can find the bogus state at https://github.com/tyrael/php-src/tree/broken-5.6-20140206 if you happen to have some commits which you still want to have in PHP-5.6. In case you *pulled* between that wrong merge and the fix git will reject doing a fast forward merge in that case please put your local 5.6 (and master accordingly) branch aside and reset to upstream, then cherry pick local changes. This might be an approach: $ git checkout PHP-5.6 # Go to your local 5.6 branch $ git pull # Results in error "can't fast-forward" $ git branch backup-5.6 # create a backup $ git reset --hard origin/PHP-5.6 # Overwrite local 5.6 with upstream $ gitk PHP-5.6 backup-5.6 # Investigate changes, cherry pick etc. $ git branch -D backup-5.6 # Remove backup (warning: no # confirmation before deletion, be sure # there's none of your work left!) --047d7b67086f2925ce053812d748--