SVN INSTALL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
wget http://apache.fayea.com/subversion/subversion-1.9.5.tar.gz
tar zxvf subversion-1.9.5.tar.gz
yum install apr apr-devel apr-util apr-util-devel -y
cd subversion-1.9.5
wget http://www.sqlite.org/sqlite-amalgamation-3071501.zip
unzip sqlite-amalgamation-3071501.zip
mv sqlite-amalgamation-3071501 sqlite-amalgamation
./configure --prefix=/usr/local/subversion
make && make install
# create repo
svnadmin create YOUR_REPO_NAME
# config repo
vi conf/auth
vi conf/passwd
vi conf/svnserve.conf
# start svn
/usr/local/subversion/bin/svnserve -d -r YOUR_REPO_FULL_PATH