Subversion
Version vom 15. Mai 2013, 21:44 Uhr von Hamatoma (Diskussion | Beiträge) (→Anlegen eines Repositories)
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_BASE=/opt/svn-repo mkdir $REPO_BASE chown -R www-data.www-data $REPO_BASE # 2 Projekte anlegen: cd $REPO_BASE svnadmin create --fs-type fsfs myproject1 chown -R www-data:www-data myproject1 svnadmin create --fs-type fsfs myproject2 chown -R www-data:www-data myproject2