Re: Checkout trunk revisions of projects in a multi project repo?
From: David Weintraub <qazwart_at_gmail.com>
Date: Mon, 6 Oct 2008 22:40:43 -0400
On Mon, Oct 6, 2008 at 9:16 AM, Fisher, Jonathan
Are you on a Unix system? You could easily write a shell script to
Just off the top of my head:
$ svn ls -R svn://localhost/Repos | grep "trunk/$"
will list out all the projects.
A little more work:
svn ls -R svn://localhost | egrep -i "(TRUNK|MAIN)/$" | while read line
Should print out a series of svn co commands. If these commands are
svn ls -R svn://localhost | egrep -i "(TRUNK|MAIN)/$" | while read line
-- David Weintraub qazwart_at_gmail.com --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org For additional commands, e-mail: users-help_at_subversion.tigris.orgReceived on 2008-10-07 04:41:06 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.