mirror of
https://gitee.com/ledc/IYUUAutoReseed
synced 2025-04-26 20:33:25 +00:00
9 lines
204 B
Bash
9 lines
204 B
Bash
#!/bin/sh
|
||
#脚本功能:从git拉取最新代码,然后执行辅种
|
||
pwddir=$(cd $(dirname $0); pwd)
|
||
echo $pwddir
|
||
cd $(dirname $0)
|
||
git fetch --all
|
||
git reset --hard origin/master
|
||
git pull
|
||
php ./iyuu.php |