From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?=C3=93scar_Fuentes?= Newsgroups: gmane.emacs.devel Subject: Re: Git mirrors Date: Thu, 13 Oct 2011 01:37:21 +0200 Message-ID: <87lispdbny.fsf@wanadoo.es> References: <871uuksdxi.fsf@lifelogs.com> <83lissxj9a.fsf@gnu.org> <87k48by7ex.fsf@lifelogs.com> <83sjmywqc6.fsf@gnu.org> <877h49evsi.fsf@wanadoo.es> <83wrc93m42.fsf@gnu.org> <87pqi1dd2z.fsf@wanadoo.es> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1318462654 1505 80.91.229.12 (12 Oct 2011 23:37:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 12 Oct 2011 23:37:34 +0000 (UTC) Cc: =?utf-8?Q?=C3=93scar?= Fuentes , emacs-devel@gnu.org To: John Wiegley Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 13 01:37:30 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RE8Mc-0005Ko-4p for ged-emacs-devel@m.gmane.org; Thu, 13 Oct 2011 01:37:30 +0200 Original-Received: from localhost ([::1]:45060 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RE8Mb-00028F-79 for ged-emacs-devel@m.gmane.org; Wed, 12 Oct 2011 19:37:29 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:44479) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RE8MY-00027z-LI for emacs-devel@gnu.org; Wed, 12 Oct 2011 19:37:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RE8MX-00035e-Hh for emacs-devel@gnu.org; Wed, 12 Oct 2011 19:37:26 -0400 Original-Received: from impaqm4.telefonica.net ([213.4.138.20]:11853 helo=telefonica.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RE8MX-00035a-4W for emacs-devel@gnu.org; Wed, 12 Oct 2011 19:37:25 -0400 Original-Received: from IMPmailhost2.adm.correo ([10.20.102.39]) by IMPaqm4.telefonica.net with bizsmtp id jzXF1h00Z0r0BT63QzdP3t; Thu, 13 Oct 2011 01:37:23 +0200 Original-Received: from qcore ([83.45.165.175]) by IMPmailhost2.adm.correo with BIZ IMP id jzdM1h00E3nNm431izdNdS; Thu, 13 Oct 2011 01:37:23 +0200 X-Brightmail-Tracker: AAAAAA== X-original-sender: 981711563@telefonica.net In-Reply-To: (John Wiegley's message of "Wed, 12 Oct 2011 18:16:43 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 213.4.138.20 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:145079 Archived-At: John Wiegley writes: >>>>>> =C3=93scar Fuentes writes: > >> As mentioned on my previous post, do a `bzr log --show-ids' and harvest = the >> revision numbers and revision ids from there. Here, a single `bzr >> revision-info ...' takes 8 seconds, but a full `bzr log --show-ids' takes >> only 30. Add a few seconds more for retrieving the numbers/ids, and you = are >> done in less than a minute (which still seems a lot to me, but YMMV) > > Great, this will do it. Just give me a few hours to get the new file up. Well, if you wish to follow that route, this is the actual command you should use: bzr log --show-ids -n 0 Without the `-n 0', the output only includes the leftmost part of the DAG. With this command: bzr log --show-ids -n 0 --short the number of emitted lines is halved, but it executes about 15% *slower* and the format is different, not necessarily more difficult to parse.