From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Git mirrors Date: Thu, 13 Oct 2011 12:21:11 -0400 Message-ID: References: <8762k095n4.fsf@lifelogs.com> <871uuksdxi.fsf@lifelogs.com> <83lissxj9a.fsf@gnu.org> <87k48by7ex.fsf@lifelogs.com> <87r52jfbrw.fsf@wanadoo.es> <87k48bf1q9.fsf@wanadoo.es> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1318522894 28207 80.91.229.12 (13 Oct 2011 16:21:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 13 Oct 2011 16:21:34 +0000 (UTC) Cc: =?iso-8859-1?Q?=D3scar?= Fuentes , Andreas Schwab , emacs-devel@gnu.org To: John Wiegley Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 13 18:21:29 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 1REO2D-00037j-Cz for ged-emacs-devel@m.gmane.org; Thu, 13 Oct 2011 18:21:29 +0200 Original-Received: from localhost ([::1]:38926 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REO2C-0004Ru-Mc for ged-emacs-devel@m.gmane.org; Thu, 13 Oct 2011 12:21:28 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:43758) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REO29-0004Rp-Fe for emacs-devel@gnu.org; Thu, 13 Oct 2011 12:21:26 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1REO28-0001Lv-Bt for emacs-devel@gnu.org; Thu, 13 Oct 2011 12:21:25 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.183]:17494 helo=ironport2-out.pppoe.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1REO28-0001Lo-9C for emacs-devel@gnu.org; Thu, 13 Oct 2011 12:21:24 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAB4Pl05FxJoX/2dsb2JhbABDqFWBBoFTAQEFJy8jEAsOJhIUGA0kwBOHbQShJIRF X-IronPort-AV: E=Sophos;i="4.69,341,1315195200"; d="scan'208";a="141716460" Original-Received: from 69-196-154-23.dsl.teksavvy.com (HELO pastel.home) ([69.196.154.23]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 13 Oct 2011 12:21:12 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id D877258BFD; Thu, 13 Oct 2011 12:21:11 -0400 (EDT) In-Reply-To: (John Wiegley's message of "Wed, 12 Oct 2011 19:08:07 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.90 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.183 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:145145 Archived-At: > | ====================================================================== > | Wed Oct 12 18:00:01 CDT 2011 > | ====================================================================== > | receiving incremental file list > | > | sent 357 bytes received 20797 bytes 475.37 bytes/sec > | total size is 376714147 speedup is 17808.18 > | To savannah:/srv/git/emacs.git > | - [deleted] old-branches/cedet-branch > | - [deleted] old-branches/emacs-unicode > | - [deleted] old-branches/gerd_defvaralias > | - [deleted] old-branches/gnus-5_10-branch > | - [deleted] old-branches/multi-tty > | - [deleted] old-branches/pending > | - [deleted] old-branches/rmail-mbox-branch > | - [deleted] other-branches/gerd_0001 > | - [deleted] other-branches/gerd_int > | - [deleted] other-branches/miles-orphaned-changes > | - [deleted] other-branches/thomas-posix1996 > | * [new branch] tmp -> tmp > `---- [...] > find * -path '*/.bzr/branch/last-revision' | while read r; do Your script fails to find the above branches which are nested within a sub-directory. You need to replace "*" with "**" (that's a zsh glob pattern). Stefan