From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff King Subject: Re: propagating repo corruption across clone Date: Tue, 26 Mar 2013 18:03:02 -0400 Message-ID: <20130326220302.GA8880@sigill.intra.peff.net> References: <20130324192350.GA20688@sigill.intra.peff.net> <20130325145644.GA16576@sigill.intra.peff.net> <20130325155600.GA18216@sigill.intra.peff.net> <20130325200752.GB3902@sigill.intra.peff.net> <20130326165553.GA7282@sigill.intra.peff.net> <102DBFFC4475445D9180A9C7D2A9D97C@PhilipOakley> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Cc: Jeff Mitchell , Duy Nguyen , =?utf-8?B?w4Z2YXIgQXJuZmrDtnLDsA==?= , Git List To: Philip Oakley X-From: git-owner@vger.kernel.org Tue Mar 26 23:03:42 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UKbxw-0001ud-NK for gcvg-git-2@plane.gmane.org; Tue, 26 Mar 2013 23:03:37 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752095Ab3CZWDI (ORCPT ); Tue, 26 Mar 2013 18:03:08 -0400 Received: from 75-15-5-89.uvs.iplsin.sbcglobal.net ([75.15.5.89]:40762 "EHLO peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751981Ab3CZWDH (ORCPT ); Tue, 26 Mar 2013 18:03:07 -0400 Received: (qmail 8794 invoked by uid 107); 26 Mar 2013 22:04:52 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) (smtp-auth username relayok, mechanism cram-md5) by peff.net (qpsmtpd/0.84) with ESMTPA; Tue, 26 Mar 2013 18:04:52 -0400 Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Tue, 26 Mar 2013 18:03:02 -0400 Content-Disposition: inline In-Reply-To: <102DBFFC4475445D9180A9C7D2A9D97C@PhilipOakley> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On Tue, Mar 26, 2013 at 09:59:42PM -0000, Philip Oakley wrote: > Which way does `git bundle file.bundl --all` perform after the changes > for both the 'transport' checking and being reliable during updates. Bundles are treated at a fairly low level the same as a remote who provides us a particular set of refs and a packfile. So we should get the same protections via index-pack, and still run check_everything_connected on it, just as we would with a fetch over the git protocol. I didn't test it, though. -Peff