Hi people..
i installed SVN using the following steps and configured.

  apt-get install apache2 mysql-server phpmyadmin php5

apt-get install php-pear libapache2-svn subversion

pear install -f -o VersionControl_SVN

Init reps dirs
#mkdir -p /var/lib/svn/repos
#touch /var/lib/svn/htaccess
#touch /var/lib/svn/htpasswd
#touch /var/lib/svn/accessfile
#chown -R www-data:www-data /var/lib/svn

Setup dav_svn module
#vi /etc/apache2/mods-available/dav_svn.conf

Put there:
DAV svn
SVNParentPath /var/lib/svn/repos
AuthType Basic
AuthName “Subversion Repository”
AuthUserFile /var/lib/svn/htpasswd
Require valid-user
# SSLRequireSSL
AuthzSVNAccessFile /var/lib/svn/accessfile
</location>

Init repo dirs

mkdir -p /var/lib/svn/repos
touch /var/lib/svn/htaccess
touch /var/lib/svn/htpasswd
touch /var/lib/svn/accessfile
chown -R www-data:www-data /var/lib/svn
So after this how to start working on it.. Do i need to install any GUI tool
for processing.
-- 
success is never final failure is never fatal
have a good day
SUDHARSH
_______________________________________________
To unsubscribe, email [email protected] with
"unsubscribe <password> <address>"
in the subject or body of the message.
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to