2

Can svn client get the list of available repo from server?

For example, I've got the VisualSVN Server in our LAN, and lot of repo's on this server. How user can get the list of all existing repos in tortoise client, if user know the main server url?

Y.N
  • 141

1 Answers1

0

If you have installed the terminal commands for SVN (you can select this in the TortoiseSVN installer) then it's simple. Just open a command prompt and enter the following, replacing <server-url> with the URL of your SVN server:

svn list <server-url>

Alternatively, as Tobias Knauss comments, you can open TortoiseSVN Repository Browser, enter the URL of your SVN server, and view the repositories in the GUI.

Kieran
  • 1