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钩子自动部署的主要内容,如果未能解决你的问题,请参考以下文章

SVN使用钩子函数(post-commit)自动推送到业务服务器

svn学习笔记5(高级应用)

[svn hooks]识别指定目录svn更新钩子

svn服务器端的客户端自动更新

windows下svn钩子实现每次提交更新至web目录

SVN提交后自动同步到web服务器hooks的使用