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

  

原文地址:https://www.cnblogs.com/xyyphp/p/6053787.html