I'm trying to browse an SVN repository without having to check it out:
- Is it possible to do this locally (on Unix)?
- Is this possible with ssh access?
I'm trying to browse an SVN repository without having to check it out:
svn ls works. e.g.
svn ls http://my.svnserver.com/trunk/foo
Try this on the command line:
svn ls http://svn.apache.org/repos/asf/spamassassin/trunk
Depening on what platform you're one you can also use:
I find using a terminal is great for power use, but when you want to just see something or dig though directories, a visual version is a little bit more rewarding.
Depending on the type of access you have, one of these options might be good:
svn look (as noted above) and svn info (also in the svn book: google for it) are two good command-line options. They work on the local machine if you're logged in, but they also work remotely over the network.
If the svn repository is running with a public web server, you may be able to simply browse to it using your browser, e.g. your.svn.server.com/your/svn/path.
Many svn administrators also install ViewVC (http://www.viewvc.org/). You can try browsing to your.svn.server.com/viewvc to see if you get anything.
Editing to let commenters change their mind ;)