Multiple repos in SVN
I was about to start a new project, MGenome and hence started to work on SVN. Setting up SVN worked out fine with MGenome. Later, ended up with thinking, if I start yet another project how to create another repo? googled so much.. found..some hints... copied hints from here and there..
Now here is complete way to do it.
sudo apt-get install libapache2-svn
vi /etc/apache2/mods/enabled/dav_svn.conf
‹Location /svn ›
DAV svn
SVNParentPath /home/svn
AuthType Basic
AuthUserFile /home/svn/passwd
‹\Location ›
Now, any project inside /home/svn/ will be accesible
Now here is complete way to do it.
sudo apt-get install libapache2-svn
vi /etc/apache2/mods/enabled/dav_svn.conf
‹
DAV svn
SVNParentPath /home/svn
AuthType Basic
AuthUserFile /home/svn/passwd
Now, any project inside /home/svn/ will be accesible
Comments