From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luke Diamand Subject: Re: [PATCH v7 0/7] git-p4: add support for large file systems Date: Fri, 25 Sep 2015 10:00:10 +0100 Message-ID: <56050D1A.2000204@diamand.org> References: <1442875273-48610-1-git-send-email-larsxschneider@gmail.com> <571C8128-DFB9-457F-97AE-8F6BC0579465@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: Git Users , Junio C Hamano To: Lars Schneider X-From: git-owner@vger.kernel.org Fri Sep 25 11:00:38 2015 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 1ZfOrs-0000qp-Uw for gcvg-git-2@plane.gmane.org; Fri, 25 Sep 2015 11:00:37 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755542AbbIYJAW (ORCPT ); Fri, 25 Sep 2015 05:00:22 -0400 Received: from mail-wi0-f170.google.com ([209.85.212.170]:37060 "EHLO mail-wi0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755490AbbIYJAU (ORCPT ); Fri, 25 Sep 2015 05:00:20 -0400 Received: by wicfx3 with SMTP id fx3so10626253wic.0 for ; Fri, 25 Sep 2015 02:00:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=diamand.org; s=google; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=AeIrMw6lCFgLUa2JpRyBLJ9bJkNf8PcDfXoilbEQEEk=; b=Fk+IS28g36f/cC7dX0wxZ3u/odVSN37Dq6OqHKzYzmZrYTdUhO1IoHUo7Zm6C7ik9l PxivQIclLHTcejZ05fT3dWFjQAydYSaf+vp0wg45nU9Ag3dXOIGL8IS4Cqp+Dgl4mu77 v0BMYI1GnXgB5wwhOfCNuZlWv258spd1hZuvM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=AeIrMw6lCFgLUa2JpRyBLJ9bJkNf8PcDfXoilbEQEEk=; b=NG8GWEmFyx5u2UUsS83jZV1PLWWWopoNTR/B7YCQG7EsWl64NjLMS/a2L235bJHzSL TZNjcVTw0jw7+O/YsMfsUUni5F6Yf74AHmejzHsxoS5LbHZYWfwr9OYZ+G0O+hvNp/dh 7OPFibRmFaIn+OAOLK9zEeQLJTD8QO1pKjFsYbdjWrFNMKC6p+83HYFR3lyQQylOo1jq Vd3mTIr50WAXa0dfxicDDxAIVY2dqIvXWhhV0Io6Swae+O8eR3apNUdmSFhWuDE6P/RR 2dvxXo01lEsXaxh6V/G16xnYAT4/i50AKeOqHnNYph1spuO0xx26gL8guTLMZdadgqsl 5BoA== X-Gm-Message-State: ALoCoQkYkMmGBN2jZl/hpcSvkPJ1c+bx1QT0AIugGEQi1c6hWD2vet02lff8sEfJoQCQ3rzi/IkC X-Received: by 10.180.210.162 with SMTP id mv2mr1936477wic.47.1443171618704; Fri, 25 Sep 2015 02:00:18 -0700 (PDT) Received: from [192.168.245.128] (cpc12-cmbg17-2-0-cust914.5-4.cable.virginm.net. [86.30.131.147]) by smtp.gmail.com with ESMTPSA id jc9sm2200493wic.6.2015.09.25.02.00.17 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 25 Sep 2015 02:00:18 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.6.0 In-Reply-To: <571C8128-DFB9-457F-97AE-8F6BC0579465@gmail.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On 25/09/15 09:35, Lars Schneider wrote: > >> size: 3 flags: 0 >> >> What's going on? > I believe this is correct. Git-LFS uses the clean/smudge filter to replace the LFS pointer with the actual file on checkout. Therefore you see the actual file! > You can find details here: https://github.com/github/git-lfs/blob/master/docs/spec.md#intercepting-git > > Can you run `du -hs .git/objects` in your Git repository? This should report a value well below 16 MB. It does, thanks!