svn hooks post-commit钩子自动部署
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了svn hooks post-commit钩子自动部署相关的知识,希望对你有一定的参考价值。
#!/bin/sh #修改为服务编码 export LANG=zh_CN.utf-8 #Set variable REPOS="$1" REV="$2" SVN=/usr/bin/svn WEB=/home/www/develop LOG=/var/log/svn/post-commit.log #update the code from the SVN $SVN update $WEB --username username --password passwd --non-interactive chown -R www-data:www-data $WEB chmod -R 755 $WEB #...................... if [ $? == 0 ] then echo "$REPOS" "$REV" >> $LOG echo `date` >> $LOG echo "##############################" >> $LOG fi
以上是关于svn hooks post-commit钩子自动部署的主要内容,如果未能解决你的问题,请参考以下文章