From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from vuizook.err.no (vuizook.err.no [178.255.151.162]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 10B972C6B2 for ; Thu, 4 Jan 2024 21:28:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glandium.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=glandium.org Received: from p3911224-ipxg00k01tokaisakaetozai.aichi.ocn.ne.jp ([114.166.160.224] helo=glandium.org) by vuizook.err.no with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1rLUjI-003ysD-2Y; Thu, 04 Jan 2024 20:54:21 +0000 Received: from glandium by goemon.lan with local (Exim 4.96) (envelope-from ) id 1rLUjA-002snV-1a; Fri, 05 Jan 2024 05:54:08 +0900 Date: Fri, 5 Jan 2024 05:54:08 +0900 From: Mike Hommey To: Stefan Haller Cc: Junio C Hamano , Taylor Blau , Patrick Steinhardt , Oswald Buddenhagen , git@vger.kernel.org Subject: Re: Concurrent fetch commands Message-ID: <20240104205408.h5wvcissfbat7acw@glandium.org> X-GPG-Fingerprint: 182E 161D 1130 B9FC CD7D B167 E42A A04F A6AA 8C72 References: <80efcb43-122c-421a-b763-6da6ff620538@haller-berlin.de> Precedence: bulk X-Mailing-List: git@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <80efcb43-122c-421a-b763-6da6ff620538@haller-berlin.de> On Thu, Jan 04, 2024 at 01:01:26PM +0100, Stefan Haller wrote: > On 03.01.24 23:10, Junio C Hamano wrote: > > Folks who invented "git maintenance" designed their "prefetch" task > > to perform the best practice, without interfering any foreground > > fetches by not touching FETCH_HEAD and the remote-tracking branches. > > That's good, but it's for a very different purpose than an IDE's > background fetch. git maintenance's prefetch is just to improve > performance for the next pull; the point of an IDE's background fetch is > to show me which of my remote branches have new stuff that I might be > interested in pulling, without having to fetch myself. So I *want* this > to be mucking with my remote-tracking branches. Use `git remote update`? Mike