CentOS 7 搭建SVN伺服器
阿新 • • 發佈:2019-01-24
一、安裝
yum -y install subversion
二、配置
1. 建立倉庫
mkdir -p /home/svn/repos
svnadmin create /home/svn/repos/
cd /home/svn/repos/conf
2. 新增使用者
vi passwd
新增 test = 123456
3. 新增使用者許可權
vim authz
新增
[/]
test = rw
4. 配置
vim svnserve.conf
修改
anon-access = none
# 授權使用者可寫
auth-access = write
# 使用哪個檔案作為賬號檔案
password-db = passwd
# 使用哪個檔案作為許可權檔案
authz-db = authz
# 認證空間名,版本庫所在目錄
realm = /home/svn/repos
5. 啟動
# 啟動svn版本庫
# svnserve -d -r /home/svn
svnserve -d -r /home/svn/repos
# 停止SVN命令
killall svnserve
三、鉤子
鉤子配置
cd ../hooks/
cp post-commit.tmpl post-commit
chmod +x post-commit
vim post-commit
鉤子指令碼修改
WEBPATH="/home/wwwroot/test/" # 網站目錄
export.UTF-8
svn update $WEBPATH --username username --password password --no-auth-cache
拉取檔案
svn co svn://127.0.0.1/ ./
拉取單個檔案
# 進入目錄
svn up laravel.log