views:

55

answers:

2

In subversion is there a command to list all the available repositories registered on a particular host? For eg., In clearcase, a "cleartool lsvob" would give me the listing of all the versioned databases in a given region. I have not been able to find anything akin to this in subversion.

Thanks

+1  A: 

No. Each subversion repository is independent and knows nothing about the others. There would be no way to locate all of the subversion repositories.

We keep all of our repositories in a standard location (/data/svn) and can easily and programatically list all of the repositories:

ls /data/svn

Or from a remote system:

ssh svn ls /data/svn
Adam Batkin
OK thanks. We do the same here, but my question was pertaining to some legacy networks that I have on hand - and know nothing about regarding how it was setup etc., Thanks for the answer.
Critical Skill
A: 

You can create subversion repos anywhere on your server and they are not linked to each other.

In my server I put everything in /var/svn/ then I can list all the repository using ssh and listing this repository.

Natim