Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
deploy.sh 443 Bytes
Copy Edit Raw Blame History
落小梅 authored 2021-12-08 17:36 . feat: routes sort
#!/bin/sh
pnpm run build &&
pwd &&
zip -q -r -o dist.zip dist &&
scp -i '/Users/jiabinbin/.ssh/root' dist.zip root@115.126.75.120:/www/admin/naive.pearadmin.com_80/ &&
ssh -i '/Users/jiabinbin/.ssh/root' root@115.126.75.120 'cd /www/admin/naive.pearadmin.com_80/ ; ./deploy.sh' &&
rm -rf dist.zip &&
rm -rf dist &&
git status &&
git add . &&
git status &&
git commit -m 'feat: routes sort' &&
git push origin master &&
echo 'task finished'
##
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化