From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Karl Fogel Newsgroups: gmane.emacs.devel Subject: Re: What a modern collaboration toolkit looks like Date: Wed, 02 Jan 2008 18:58:31 -0800 Message-ID: <87ir2blinc.fsf@red-bean.com> References: <20071231130712.GB8641@thyrsus.com> <20080101171120.GC3830@muc.de> <20080101.190535.32709273.wl@gnu.org> <87sl1gnh3o.fsf@red-bean.com> <20080102221022.A252D30289@Psilocybe.Update.UU.SE> Reply-To: Karl Fogel NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1199321914 25186 80.91.229.12 (3 Jan 2008 00:58:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Jan 2008 00:58:34 +0000 (UTC) Cc: ofv@wanadoo.es, emacs-devel@gnu.org To: ams@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 03 01:58:54 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JAEQ7-0001GO-UU for ged-emacs-devel@m.gmane.org; Thu, 03 Jan 2008 01:58:52 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAEPm-0006Vt-7a for ged-emacs-devel@m.gmane.org; Wed, 02 Jan 2008 19:58:30 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JAEPi-0006TP-9L for emacs-devel@gnu.org; Wed, 02 Jan 2008 19:58:26 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JAEPe-0006TD-Ri for emacs-devel@gnu.org; Wed, 02 Jan 2008 19:58:25 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAEPe-0006TA-Iq for emacs-devel@gnu.org; Wed, 02 Jan 2008 19:58:22 -0500 Original-Received: from sanpietro.red-bean.com ([66.146.193.61]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JAEPa-0001aP-BQ; Wed, 02 Jan 2008 19:58:18 -0500 Original-Received: from localhost ([127.0.0.1]:47593) by sanpietro.red-bean.com with esmtp (Exim 4.68) (envelope-from ) id 1JAEPY-0006XB-JD; Wed, 02 Jan 2008 18:58:16 -0600 In-Reply-To: <20080102221022.A252D30289@Psilocybe.Update.UU.SE> (Alfred M. Szmidt's message of "Wed\, 2 Jan 2008 23\:10\:22 +0100 \(CET\)") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:85956 Archived-At: "Alfred M. Szmidt" writes: > I tried to do a test conversion of the Emacs CVS repository, but don't > see a way to get a full repository tarball from Savannah. If someone > can hand me one, I'll do a test conversion and report back. > > | rsync -av cvs.gnu.org::sources/emacs . > > Someone already noted that there was already a git repository of Emacs > on savannah: > > | git clone git://git.sv.gnu.org/emacs.git Oh, I already followed up in the original thread with the answer. Here it is: > David Kastrup writes: > > But I doubt all of them manage to squeeze all of Emacs' CVS history > > (actually, more than that, since the Emacs' git repository also contains > > the non-CVS multi-tty history AFAIK) into 200MB. > > Only ~280MB for a git clone, for what it's worth. I used Romain > Francoise's [correct: Jim Meyering's] git mirror of Emacs CVS to > determine this: > > $ git clone git://git.sv.gnu.org/emacs.git > Initialized empty Git repository in /home/kfogel/src/emacs/.git/ > remote: Generating pack... > remote: > Done counting 451233 objects. > remote: Deltifying 451233 objects... > remote: > Indexing 451233 objects... > remote: Total 451233 (delta 350726), reused 433746 (delta 336579) > 100% (451233/451233) done > Resolving 350726 deltas... > 100% (350726/350726) done > Checking 2778 files out... > 100% (2778/2778) done > $ du -sh emacs > 282M emacs > $ -Karl