Hi,
How can I view the comments on the tags in svn? Assume I create a tag:
svn cp -m"vhost apache config" file:///var/svn/repos/foo/trunk file:///var/svn/repos/foo/tags/release-0.1
Later, I have tagged many times, and I need to find out what each tag is about. I can use:
svn ls --verbose file:///var/svn/repos/foo/tags
------------------------------------------------------------------------
r50 | user | 2010-03-03 18:11:50 -0500 (Wed, 03 Mar 2010) | 1 line
Changed paths:
A /foo/tags/release-0.1/trunk (from /foo/trunk:49)
vhost apache config
The information is there, but with a large list of tags it's difficult to pick out the log entry that will tell me which tag I'm interested in. In this case it's "vhost apache config". Is it possible to simply list all tags, and the comment that was applied at creation (copy) time?
Thanks.