Newsgroups: php.cvs,php.internals Path: news.php.net Xref: news.php.net php.cvs:96694 php.internals:97726 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 5807 invoked from network); 12 Jan 2017 16:08:03 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Jan 2017 16:08:03 -0000 Authentication-Results: pb1.pair.com smtp.mail=tyra3l@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=tyra3l@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.218.44 as permitted sender) X-PHP-List-Original-Sender: tyra3l@gmail.com X-Host-Fingerprint: 209.85.218.44 mail-oi0-f44.google.com Received: from [209.85.218.44] ([209.85.218.44:35009] helo=mail-oi0-f44.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E3/A6-50165-1E9A7785 for ; Thu, 12 Jan 2017 11:08:02 -0500 Received: by mail-oi0-f44.google.com with SMTP id j15so27924208oih.2; Thu, 12 Jan 2017 08:08:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:from:date:message-id:subject:to; bh=DtYcCoziyGPwfq7p6HZiwNMS+Rr/lh7RykWB4Z86daw=; b=hNI0EEtPXNETSBjlZNi9zL7w0kpTokHSrML89hWoym4Nky4fte/KSMp881UEMprSG+ EYmNXyVVsxNEA14xkIvmtaFQ0gtaW3zV2WVDgKKekI7b8v/m55BbE2L8HdTezZPOYC1B 3FxBjC/Ixkkg91eaunwnPRqD3ICavrvZ1XLLikqZ4XmiRexA9140SA8YFuTbGwOJWFlg Mn01ecRATgLo+l66jFj8Bon7yjivagRm3hqiv7CKfbnAitLpF69RrBn+he3E59L5ozOX BYLEHMyjhkqPHCmpEH7tsWH6pmM7nHu/75QgI9TL4/Ks6oeVz9Qye3XFa8Ru1AVS+ZDL 2uig== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:from:date:message-id:subject :to; bh=DtYcCoziyGPwfq7p6HZiwNMS+Rr/lh7RykWB4Z86daw=; b=IN9T2YMCUMpq35T8DzyLn4nVAsePsDusId18KlsGpKLHUq6jcchsf678yvLcuucRiB XnduLeJ053i+J+yDR6N/GZSfpadJxpAhLKkan812qH92Yn/RrVdrpQQiaHu5S9hPdCFf n8pobNwtOU2TR73Bh4Uk6Xw2CzOFKjO4oJkQMEc/fthXAdHv+N3GiG6E6VFcEuis6Zbf 1Ra5a8wcrs2hQZdYbIHIlbo6k0qInqLGuZt3HAz9+xOq4DhP/fYHkI/IU146Xn8Cvqbv aTdC2AZp2lPTA38bG+KfiidherfbHHUT1+fxmpRYlZExiYsMVDgD2NLLjHKckTRpZNdz TMPQ== X-Gm-Message-State: AIkVDXJ6rrl0Szc8dxwlXOX9/BBKQ4asbI2/pisLLbfXH69i1NbnbztQNAv7fdYCmT5oqO4/Q78vbMt3DTgtqQ== X-Received: by 10.202.59.68 with SMTP id i65mr945436oia.213.1484237278131; Thu, 12 Jan 2017 08:07:58 -0800 (PST) MIME-Version: 1.0 Sender: tyra3l@gmail.com Received: by 10.157.42.34 with HTTP; Thu, 12 Jan 2017 08:07:57 -0800 (PST) Date: Thu, 12 Jan 2017 17:07:57 +0100 X-Google-Sender-Auth: 6KKef_a66SV9OKDHpW4DR_Q9M2E Message-ID: To: PHP Internals , "php-cvs@lists.php.net" Content-Type: multipart/alternative; boundary=001a113cf36ab9ba2c0545e7eba8 Subject: force push in php-src From: tyrael@php.net (Ferenc Kovacs) --001a113cf36ab9ba2c0545e7eba8 Content-Type: text/plain; charset=UTF-8 hi, we had a wrong merge in the php-src, merging master into PHP-7.1. I've just force pushed the last good version before the bogus merge( 6fbd61a8199fbac9aac25d0dfaf1402a8f2b4e7b). You can find the bogus state at https://github.com/Tyrael/php-src/tree/7.1.0-broken if you happen to have some commits which you still want to have in PHP-7.1. 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 7.1 (and master accordingly) branch aside and reset to upstream, then cherry pick local changes. This might be an approach: $ git checkout PHP-7.1 # Go to your local 7.1 branch $ git pull # Results in error "can't fast-forward" $ git branch backup-7.1 # create a backup $ git reset --hard origin/PHP-7.1 # Overwrite local 7.1 with upstream $ gitk PHP-7.1 backup-7.1 # Investigate changes, cherry pick etc. $ git branch -D backup-7.1 # Remove backup (warning: no # confirmation before deletion, be sure # there's none of your work left!) --001a113cf36ab9ba2c0545e7eba8--