vijay
vijay

Reputation: 31

browser path for svn

I have a test project in SVN repository.

Upvotes: 1

Views: 259

Answers (5)

crashmstr
crashmstr

Reputation: 28573

Subversion (by itself) does not deploy or build your project. It stores it in a repository, which you can view with various tools or web pages depending on configuration. The other answers give you ways of using a web browser to do that.

But to test your project (which I'm assuming is a website), you need to deploy it to a web server. Then just point your browser (whichever one you choose) to that web server (and path / subdomain / etc.) to test.

Upvotes: 0

Vanni Totaro
Vanni Totaro

Reputation: 5471

Trac contains a standalone web server and a super Subversion Repository Browser.

Upvotes: 1

glaz666
glaz666

Reputation: 8731

you should add it in /etc/httpd/conf.d/subversion.conf something like:

 <Location /svn <!--here is the path from browser-->>
   ...
   SVNPath /usr/local/svn/ <!--physical path-->

   ...
 </Location>

Upvotes: 0

pmod
pmod

Reputation: 10997

There is a special apache module for svn (using webdav) which allows to do that. Take a look at Configuring Apache for Subversion use

After that, you can enter into svn directory browser using:

http://[your svn server]/svn/

Upvotes: 0

Greg Hewgill
Greg Hewgill

Reputation: 993183

Subversion does not offer browser access by default. You will have to install something like ViewVC on your server.

Upvotes: 1

Related Questions