windows SVN提交后自动更新钩子

post-commit.cmd

@echo off
SET REPOS=%1
SET USER=%2
SET SVN="D:\Program Files (x86)\VisualSVN Server\bin\svn.exe"
SET DIR="D:\AppServ\www\airasia-test"
(call %SVN% update %DIR% --username kongdq --password 123456 --non-interactive)

 

先设置钩子,然后在windows服务中svn server使用超级管理员帐号(不然会由于权限问题提交后报错),如下图

windows SVN提交后自动更新钩子_第1张图片

你可能感兴趣的:(其它)