4

I would like to be able to list out the contents of a subversion repository from a Sun Solaris client. What svn subcommand, or options, do I need to give to do this?

Scott Pack
  • 15,097

1 Answers1

6

The svn list command will show you the contents of a directory in a subversion repository. For example:

svn list svn://svn.example.org/path/in/repos

Run svn help list at the command line to show details of all the options.

Phil Ross
  • 7,479