Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:118177 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 23880 invoked from network); 4 Jul 2022 08:15:24 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 4 Jul 2022 08:15:24 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id D668D1804BD for ; Mon, 4 Jul 2022 03:07:53 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=BAYES_00,SPF_HELO_PASS, SPF_NEUTRAL,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS30827 82.113.144.0/20 X-Spam-Virus: No X-Envelope-From: Received: from xdebug.org (xdebug.org [82.113.146.227]) by php-smtp4.php.net (Postfix) with ESMTP for ; Mon, 4 Jul 2022 03:07:53 -0700 (PDT) Received: from localhost (localhost [IPv6:::1]) by xdebug.org (Postfix) with ESMTPS id 5155E10C035; Mon, 4 Jul 2022 11:07:52 +0100 (BST) Date: Mon, 4 Jul 2022 11:07:52 +0100 (BST) X-X-Sender: derick@singlemalt.home.derickrethans.nl To: "Christoph M. Becker" cc: Remi Collet , PHP internals In-Reply-To: <4b3a2ac2-c580-405e-fdc0-51e1ca1fb480@gmx.de> Message-ID: References: <4b3a2ac2-c580-405e-fdc0-51e1ca1fb480@gmx.de> User-Agent: Alpine 2.23 (DEB 453 2020-06-18) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Subject: Re: [PHP-DEV] Re: PHP-8.1 branch seems broken From: derick@php.net (Derick Rethans) On Mon, 4 Jul 2022, Christoph M. Becker wrote: > On 04.07.2022 at 10:16, Remi Collet wrote: > > > In PHP 8.1: > > > > This branch is 1 commit ahead, 7 commits behind master. > > > > > > This seems terribly wrong, looks like was merged from master > > (NEWS file have 8.2 entries) > > > > > > Can some GIT expert check and fix that ? > > Derick is working on fixing the issue. Since he will need to reset to > the last good state, and force-push, everybody will have to fix their > clones afterwards (reset and pull). Please do not push to any branch > until this is done. Thanks to Tim we've rebuild the PHP-8.1 branch. You will only have to reset the PHP-8.1 branch, with the following: git fetch git checkout PHP-8.1 # Backup local changes git reset --hard origin/PHP-8.1 # Reapply local changes Before you push anything, please make sure that the graph looks good, preferably by using the "gitk" tool to visualise. cheers, Derick