Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

svn: how to list last tags from svn command line?

Whe have built a packager who diff the last due tag in svn and prepare directory folding and copy the 'diff' files in the right plave.

but we must enter on commnand line the two tag name, and so we must consult revision graph (from windows).

Is there a way to list tags from svn command line client ?

like image 725
realtebo Avatar asked Oct 16 '12 06:10

realtebo


1 Answers

This will work from the command line on Windows, Mac or Linux, though it requires that the current working directory is in the working copy:

svn ls "^/tags"
like image 93
the_mandrill Avatar answered Oct 28 '22 10:10

the_mandrill