第一步
把web目录设置为工作目录
"D:\Program Files (x86)\VisualSVN Server\bin\svn.exe" upgrade "D:\yiyun_www\test" --quiet --username chiyj --password chiyj
在DOS下执行。
第二步修改文件
D:\yiyun_code\test\hooks下新建文件
post-commit.bat 内容如下
@echo off
SET REPOS=%1
SET USER=%2
SET SVN="D:\Program Files (x86)\VisualSVN Server\bin\svn.exe"
SET DIR="D:\yiyun_www\test"
(call %SVN% update %DIR% --username chiyj --password chiyj --non-interactive)
参考 http://www.cnblogs.com/xiezhengcai/archive/2013/11/27/3445457.html