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-Status: No, score=-3.8 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 939F01F4B4 for ; Thu, 17 Sep 2020 13:33:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726765AbgIQNdT (ORCPT ); Thu, 17 Sep 2020 09:33:19 -0400 Received: from cloud.peff.net ([104.130.231.41]:59930 "EHLO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727093AbgIQNcJ (ORCPT ); Thu, 17 Sep 2020 09:32:09 -0400 Received: (qmail 623 invoked by uid 109); 17 Sep 2020 13:31:54 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with ESMTP; Thu, 17 Sep 2020 13:31:54 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 8619 invoked by uid 111); 17 Sep 2020 13:31:53 -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; Thu, 17 Sep 2020 09:31:53 -0400 Authentication-Results: peff.net; auth=none Date: Thu, 17 Sep 2020 09:31:53 -0400 From: Jeff King To: Alex Riesen Cc: git@vger.kernel.org, Junio C Hamano , Eric Wong Subject: Re: [PATCH] Config option to set the transport protocol version for network fetches Message-ID: <20200917133153.GA3038002@coredump.intra.peff.net> References: <20200916200203.GA37225@coredump.intra.peff.net> <20200917132047.GA14771@pflmari> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200917132047.GA14771@pflmari> Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Thu, Sep 17, 2020 at 03:20:47PM +0200, Alex Riesen wrote: > Affecting the transfers initiated by fetch and push, > the option allows to control network operations similar > to --ipv4 and --ipv6 options. > > Suggested-by: Jeff King > Signed-off-by: Alex Riesen I think this misses some of the excellent suggestions from Junio (naming, and the ability to override from the command line). -Peff