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: Equivalent of release tags with bzr? Date: Tue, 29 Dec 2009 22:59:52 +0100 Message-ID: <87aax1o2zr.fsf@telefonica.net> References: <878wclfso7.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1262124066 8929 80.91.229.12 (29 Dec 2009 22:01:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 29 Dec 2009 22:01:06 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 29 23:00:58 2009 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 1NPk7a-0004Ue-O4 for ged-emacs-devel@m.gmane.org; Tue, 29 Dec 2009 23:00:55 +0100 Original-Received: from localhost ([127.0.0.1]:45592 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NPk7b-0006je-7Q for ged-emacs-devel@m.gmane.org; Tue, 29 Dec 2009 17:00:55 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NPk77-0006Yf-6h for emacs-devel@gnu.org; Tue, 29 Dec 2009 17:00:25 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NPk72-0006Xp-QY for emacs-devel@gnu.org; Tue, 29 Dec 2009 17:00:24 -0500 Original-Received: from [199.232.76.173] (port=57290 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NPk72-0006Xm-Kz for emacs-devel@gnu.org; Tue, 29 Dec 2009 17:00:20 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:40020) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NPk72-000642-5y for emacs-devel@gnu.org; Tue, 29 Dec 2009 17:00:20 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.50) id 1NPk6y-0004EF-LX for emacs-devel@gnu.org; Tue, 29 Dec 2009 23:00:16 +0100 Original-Received: from 174.red-83-45-255.dynamicip.rima-tde.net ([83.45.255.174]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Dec 2009 23:00:16 +0100 Original-Received: from ofv by 174.red-83-45-255.dynamicip.rima-tde.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Dec 2009 23:00:16 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 41 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 174.red-83-45-255.dynamicip.rima-tde.net User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux) Cancel-Lock: sha1:6AbNpnlkiVet9BiflMYPlPbJfNA= X-detected-operating-system: by monty-python.gnu.org: GNU/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:118992 Archived-At: Chong Yidong writes: > With CVS, I would tag each pretest with a cvs tag, with > `cvs tag EMACS_PRETEST_XX_YY_ZZ'. Now that we have moved to Bzr, what > should be the corresponding procedure? As Juanma says, there is a `tag' command. Sadly, it seems underdocumented. I did some experiments and it seems to work this way: on your local trunk mirror, bzr tag will tag the current tip revision with . If your local mirror is a bound branch or checkout (the recommended setup on our bzr guides for emacs devs) it will automatically send the tag upstream. If you are tagging on a proper branch, you'll need a `push' for propagating it; the push command will report that it is nothing to push, but it is a lie: it actually pushed the tag to its push location. Later, you can operate with the tagged revision with the syntax tag:, so for instance bzr log -r tag:.. will show the log from the tagged revision to now. bzr branch -r tag: URL will create a branch with the tagged revision as its tip. You can see a list of availabe tags on the current branch with bzr tags HTH -- Óscar