Getting a list of project tags from Subversion

So there you are nicely tagging your project in Subversion, but for some reason you need to get a list of all the tags being used… That situation came up for me today. I thought it was going to be some really complex way of getting the tags, involving the use of hook scripts and the like. But it turns out that with some command line goodness it’s actually much more simple. Here’s how to do it:

[code]svnlook tree –full-paths /home/path/to/svn/project | \
egrep -a ‘/?tags/.+’ | \
sed -re ‘s!.*/?tags/([^/]*).*!\1!’ | \
sort -u[/code]

Share

2 Responses

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.