git 自动化部署脚本

放到服务器的Git仓库下hooks下,(就是新建一个钩子文件,文件名:post-receive)

内容如下:

#!/bin/sh

echo "post_receive_begin"
nginx_html=/project/test
#nginx_html_confs_env=/usr/local/nginx/html/confs/.env
#nginx_html_env=${nginx_html}.env
#nginx_html_composer_json=${nginx_html}composer.json
#nginx_html_composer_lock=${nginx_html}composer.lock

#
if [[ ! -d ${nginx_html} ]];then
        mkdir ${nginx_html}
        chmod 777 -R ${nginx_html}
fi

#is_install=0

#if [[ -f ${nginx_html_composer_json} || -f ${nginx_html_composer_lock} ]] ;then
#       json_hash=`cat ${nginx_html_composer_json} | git hash-object --stdin`
#       lock_hash=`cat ${nginx_html_composer_lock} | git hash-object --stdin`
#else

#       is_install=1
#fi

git --work-tree=${nginx_html} checkout -f master
#main
#if [ ${is_install} = 0 ];then
#       json_hash_end=`cat ${nginx_html_composer_json} | git hash-object --stdin`
#       lock_hash_end=`cat ${nginx_html_composer_lock} | git hash-object --stdin`
#       if [[ "${json_hash}"x != "${json_hash_end}"x || "${lock_hash}"x != "${lock_hash_end}"x ]];then
#               is_install=1
#       fi
#fi


#echo is_install:${is_install}
#echo json_hash:${json_hash}
#echo json_hash_end:${json_hash_end}
#echo lock_hash:${lock_hash}
#echo lock_hash_end:${lock_hash_end}

#if [[ ${is_install} = 1 ]];then

#
#       cd ${nginx_html}
#       composer install
#       echo "composer_install"
#fi

#/bin/cp -rf ${nginx_html_confs_env}  ${nginx_html_env}
sudo -u root chown -R nginx:nginx ${nginx_html}
sudo  -u root chmod 775 -R ${nginx_html}

echo "post_receive_end"
exit

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值