Subversion Control
現在喜歡用subversion 做版本控制,因為可以知道自己改了什麼?
Apache side
/etc/apache/mod-available/dav_svn.conf
Create the directory to store database
Then import the data tree into the svn
Apache side
/etc/apache/mod-available/dav_svn.conf
DAV svn
SVNPath /home/svn/
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /etc/subversion/svn.ppb.passwd
Require valid-user
Create the directory to store database
# svnadmin create svn
# chown -R www-data svn
Then import the data tree into the svn
# svn import svn http://svn/
Comments