git提交到项目中自动部署
设置webhock 地址
webhock 触发 命令
#!/bin/sh
cd /www/wwwroot
output=`git reset --hard`
output=`git pull origin master`
chown -R www:www ./
chmod 755 -R ./
可能会造成拉取不到代码的情况。
在项目.git目录编辑config
[remote "origin"]
url = https://不是邮箱的用户名:密码@gitee.com/地址
fetch = +refs/heads/*:refs/remotes/origin/*
git
更多相关内容