CentOS 4.2 に subversion の設定

SE風味

2006年08月15日 09:14

CentOS 4.2 に subversionの設定

参考にしたページ
http://park1.wakwak.com/~ima/centos4_subversion0001.html
http://terai.xrea.jp/Subversion.html


yum install subversion


リポジトリの作成

場所は、/home/svn/repos/test とします。

# mkdir -p /home/svn/repos/test
# svnadmin create /home/svn/repos/test

# svn mkdir file://localhost/home/svn/repos/test/trunk -m "create trunk"
# svn mkdir file://localhost/home/svn/repos/test/tags -m "create tags"
# svn mkdir file://localhost/home/svn/repos/test/branches -m "create branches"


WebDAVでのリポジトリ公開

yum install mod_dav_svn

関連記事