From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Bzr Emacs question Date: Sat, 24 Nov 2012 19:34:38 +0200 Message-ID: <83pq32zyz5.fsf@gnu.org> References: <23373.1353776529@olgas.newt.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1353778509 7226 80.91.229.3 (24 Nov 2012 17:35:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 24 Nov 2012 17:35:09 +0000 (UTC) Cc: emacs-devel@gnu.org To: Bill Wohler Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 24 18:35:20 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TcJdQ-00054z-Of for ged-emacs-devel@m.gmane.org; Sat, 24 Nov 2012 18:35:20 +0100 Original-Received: from localhost ([::1]:44770 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcJdF-0002bT-TB for ged-emacs-devel@m.gmane.org; Sat, 24 Nov 2012 12:35:09 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:54911) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcJdD-0002Z9-Fh for emacs-devel@gnu.org; Sat, 24 Nov 2012 12:35:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TcJdC-0006E5-5u for emacs-devel@gnu.org; Sat, 24 Nov 2012 12:35:07 -0500 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:56722) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TcJdB-0006C0-UE for emacs-devel@gnu.org; Sat, 24 Nov 2012 12:35:06 -0500 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0ME000G005Y2X600@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Sat, 24 Nov 2012 19:34:33 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0ME000GSV65LD7C0@a-mtaout20.012.net.il>; Sat, 24 Nov 2012 19:34:33 +0200 (IST) In-reply-to: <23373.1353776529@olgas.newt.com> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.166 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:155062 Archived-At: > Date: Sat, 24 Nov 2012 09:02:09 -0800 > From: Bill Wohler > > I want to make an MH-E 8.3.1 release that corresponds to the Emacs 24.1 > release. I thought that I would do this: > > bzr tag -r emacs-24.1 mh-e-8.3.1 > > But then when I run the following to get the proper workspace for > creating a release: > > bzr up -r mh-e-8.3.1 > > I get this error: > > bzr: ERROR: branch has no revision cyd@gnu.org-20120610074146-e2dmv3euiqbajrxt > bzr update --revision only works for a revision in the branch history > > What is wrong? A tag is not a revision-id by itself. Try bzr up -r tag:mh-e-8.3.1 (And I'm not sure you really want "up" and not some other command, but that's another story.) > On a related note, what command should I use to confirm the revision of > the workspace? "svn info" provides this information but "bzr info" does > not. Does "bzr revno" do what you want?