SVN钩子即时同步到测试环境中

# vim /home/svn/test/hooks/post-commit

#!/bin/sh

export LANG=en_US.UTF-8  ##防止中文乱码,重点
SVN=/usr/bin/svn   ##svn命令  
WEB=/home/wwwroot/test  ##要更新的版本库(测试环境)
$SVN update $WEB --username admin --password 123456

你可能感兴趣的:(SVN钩子即时同步到测试环境中)