Linux – Displaying the contents of a Subversion repository

command-line-interfacelinuxsolarissvn

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?

Best Answer

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.