i have test project in svn repository
how can i check it different browsers like(IE,Firefox) so i can test
means what would be a path in browser for testing project.
is ther any other method to check a project in browser
i have test project in svn repository
how can i check it different browsers like(IE,Firefox) so i can test
means what would be a path in browser for testing project.
is ther any other method to check a project in browser
Subversion does not offer browser access by default. You will have to install something like ViewVC on your server.
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/
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>
Trac contains a standalone web server and a super Subversion Repository Browser.