From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: Re: Re: Any idea why the git repo is so huge Date: Wed, 03 Feb 2010 09:52:08 -0600 Message-ID: <87hbpyco5z.fsf@dustycloud.org> References: <4B681AA8.2000308@manor-farm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NchWW-0004wM-E5 for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 10:52:12 -0500 Received: from [199.232.76.173] (port=56476 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NchWW-0004w9-1k for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 10:52:12 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NchWQ-0006nj-Fo for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 10:52:11 -0500 Received: from li28-75.members.linode.com ([75.127.72.75]:60108) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NchWO-0006nY-IR for emacs-orgmode@gnu.org; Wed, 03 Feb 2010 10:52:05 -0500 In-Reply-To: (Richard Riley's message of "Tue, 02 Feb 2010 18:57:00 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Richard Riley Cc: emacs-orgmode@gnu.org Richard Riley writes: > I was under the impression that the one thing that git does not > advertise is space efficiency - it stores total file blobs for each and > every change. So I think its efficiency is in terms of speed, not in > terms of disk usage. And to be honest, if you worry about 54M in a > development scenario then I'd be surprised when you consider how cheap > disk is these days. Git does store those as individual files initially, but once you run git gc it'll compress them and store only the deltas in the pakfiles. After I run git gc my orgmode .git/ directory is compressed to 44MB. Not a huge difference, but a difference nonetheless. - cwebb