From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-3.8 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 88B481F54E for ; Wed, 7 Sep 2022 18:23:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230049AbiIGSWH (ORCPT ); Wed, 7 Sep 2022 14:22:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34576 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230416AbiIGSWA (ORCPT ); Wed, 7 Sep 2022 14:22:00 -0400 Received: from cloud.peff.net (cloud.peff.net [104.130.231.41]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 47BAFBD4F4 for ; Wed, 7 Sep 2022 11:21:58 -0700 (PDT) Received: (qmail 22890 invoked by uid 109); 7 Sep 2022 18:21:58 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with ESMTP; Wed, 07 Sep 2022 18:21:58 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 13345 invoked by uid 111); 7 Sep 2022 18:21:56 -0000 Received: from coredump.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.2) by peff.net (qpsmtpd/0.94) with (TLS_AES_256_GCM_SHA384 encrypted) ESMTPS; Wed, 07 Sep 2022 14:21:56 -0400 Authentication-Results: peff.net; auth=none Date: Wed, 7 Sep 2022 14:21:55 -0400 From: Jeff King To: Lana Deere Cc: =?utf-8?B?xJBvw6BuIFRy4bqnbiBDw7RuZw==?= Danh , git@vger.kernel.org Subject: Re: 2.37.2 can't "git pull" but 2.18.0 can Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Wed, Sep 07, 2022 at 11:56:27AM -0400, Lana Deere wrote: > Sorry, I was confused by the "0 left". With one more besect it says > > 9f489ac6bbb755fa4c83289e44cad12f3b765d69 is the first bad commit > > That appears to be > [9f489ac6bbb755fa4c83289e44cad12f3b765d69] Merge branch 'dl/zero-oid-in-hooks' That seems unlikely to be the real culprit. I wonder if something went wrong during the bisect. A common gotcha when building Git from source is to directly run: /path/to/git-clone/git pull Under the hood git-pull will run git-fetch, which it will look for in the installed libexec dir. But of course if you didn't run "make install", then what is there may be some old version installed previously. Instead, you want to run: /path/to/git-clone/bin-wrappers/git pull which will set up the environment so that we'll find any other git commands inside the build directory. That's all a wild guess, of course, but if you think that might be the problem it's worth trying the bisect again. -Peff