[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: finding history of a tag creation

From: David Weintraub <qazwart_at_gmail.com>
Date: Wed, 24 Jun 2009 12:23:18 -0400

Tags are just directories in Subversion. You copy a URL to another
location under your "tag" directory, and it's a tag.

You can use "svn log" to find out who created the tag and from what URL:

$ svn log -v --stop-on-copy
http://subversion/dev/modules/adsuite/tags/REL/ADS-5.3.1b1
------------------------------------------------------------------------
r51242 | dweintraub | 2009-04-07 15:26:33 -0400 (Tue, 07 Apr 2009) | 2 lines
Changed paths:
   A /modules/adsuite/tags/REL/ADS-5.3.1b1 (from
/modules/adsuite/tags/DEV/ADS-IB-21848-D-83:51241)

Creating release ADS-5.3.1b1 from ADS-IB-21848-D-83

------------------------------------------------------------------------

I can see that dweintraub (me) created this tag, it was created on
April, 7, 2009, and it was created from another tag called
ADS-IB-21848-D-83). If I leave out the --stop-on-copy parameter, it
will list the entire commit history of this tag:

$ svn log -v http://subversion/dev/modules/adsuite/tags/REL/ADS-5.3.1b1
------------------------------------------------------------------------
r51242 | dweintraub | 2009-04-07 15:26:33 -0400 (Tue, 07 Apr 2009) | 2 lines
Changed paths:
   A /modules/adsuite/tags/REL/ADS-5.3.1b1 (from
/modules/adsuite/tags/DEV/ADS-IB-21848-D-83:51241)

Creating release ADS-5.3.1b1 from ADS-IB-21848-D-83

------------------------------------------------------------------------
r51146 | svnant | 2009-04-01 09:31:33 -0400 (Wed, 01 Apr 2009) | 1 line
Changed paths:
   A /modules/adsuite/tags/DEV/ADS-IB-21848-D-83 (from
/modules/adsuite/branches/ib-21848:51145)

Tagged ADS-IB-21848-D-83 by Hudson Build: Repository Revision: 51145.
------------------------------------------------------------------------
r51145 | vrathod | 2009-04-01 09:17:22 -0400 (Wed, 01 Apr 2009) | 3 lines
Changed paths:
   M /modules/adsuite/branches/ib-21848/dbutil/ADS_IB_UPDATE_DB.sh

ADS-3561
Found a better way with single root team script under update/migration scripts
code base: ib-21848
------------------------------------------------------------------------

Now, I can see that the ADS-IB-21848-D-83 tag was taken from revision
#51145 of the ib-21848 branch of my Adsuite project. This tag was
created by my continuous build system (I can see that by the svnant
user).

The next one is now starting to show the changes that took place on
the ib-21848 branch. If I keep this listing, I'd see all file changes
since I created my repository.

Is this what you're looking for?

On Wed, Jun 24, 2009 at 7:30 AM, fida
aljounaidi<fida.aljounaidi_at_gmail.com> wrote:
> Hi
>
> I want to know if we can find the history of tag creation (the steps of
> creating it). In other words, can we construct the tree which leads to the
> tags creation (since te first repository commit) ?
>
> thank you
>
>
>

-- 
David Weintraub
qazwart_at_gmail.com
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2365016
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-06-24 18:24:10 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.