Subversion
Server
apt-get install subversion libapache2-svn
Konfiguration
Apache2 herrichten:
/etc/apache2/mods-available/dav_svn.conf
<Location /svn> DAV svn SVNParentPath /opt/svn-repo </Location>
Anlegen eines Repositories
REPO=/opt/svn-repo svnadmin create --fs-type fsfs $REPO chown -R www-data.www-data $REPO # add a subproject cd $REPO svn mkdir myproject svn mkdir myproject/trunk