Listing all SVN repositories

svn

Solution

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

Problem

In subversion is there a command to list all the available repositories registered on a particular host? 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.

Original source