3 Star 2 Fork 1

huangwy/laravel_admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
update-git.sh 693 Bytes
一键复制 编辑 原始数据 按行查看 历史
hwy1991 提交于 2021-03-04 15:49 . 优化
#!/bin/bash
#
#更新GIT到最新版本
#
echo "开始执行"
CMD_PATH=`dirname $0`
cd $CMD_PATH
echo "进入目录:$PWD"
WEB_USER='root'
WEB_USERGROUP='root'
#
# 未clone请先做一下clone
# 如git clone [email protected]:....
#
echo "拉取代码..."
git reset --hard HEAD
git clean -f
git pull
#处理数据库配置被覆盖
#rm -rf ./Conf/db.php
#cp -rf ./Conf/db.master.php ./Conf/db.php
echo "修改目录用户权限..."
#rm -rf ./Runtime/*
chmod -R 755 ./update-git.sh
chmod -R 777 ./storage/
chmod -R 777 ./nohup.out
chmod -R 755 ./public/uploads/
chown -R $WEB_USER:$WEB_USERGROUP ./storage/
chown -R $WEB_USER:$WEB_USERGROUP ./public/uploads/
echo "完成!!!"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/huangwy1991/laravel_admin.git
[email protected]:huangwy1991/laravel_admin.git
huangwy1991
laravel_admin
laravel_admin
master

搜索帮助