Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display list of repositories from subversion server

I'm looking for a way to search a whole subversion server.

I already got a piece of the puzzle to search within a repository. Now I need to do this for every repository.

Update:

I have to access this list from some unix shell script (perl, bash, etc.)

like image 781
lamcro Avatar asked Nov 07 '09 16:11

lamcro


People also ask

How do I check svn repository?

Check out files from Subversion repositoryIn the Get from Version Control dialog, click Add Repository Location and specify the repository URL. Click Check Out. In the dialog that opens, specify the destination directory where the local copy of the repository files will be created, and click OK.

How do I find my svn repository in Linux?

For example, using SVN commands can help you display a list of SVN repositories. Simply use the svn list repository command, and you'll get a list of all repositories and their contents. Of course, this is just one of many useful SVN commands you should know.


1 Answers

I was also looking to list repositories in SVN. I did something like this on shell prompt:

~$ svn list https://www.repo.rr.com/svn/main/team/gaurav  Test/ Test2/ Test3/ Test4/ Test5/ Test6/ 
like image 197
gkgarg24 Avatar answered Sep 19 '22 08:09

gkgarg24