mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 19:41:43 +08:00
18 lines
554 B
Bash
18 lines
554 B
Bash
#!/usr/bin/env bash
|
||
set -e
|
||
npm run build
|
||
cd dist
|
||
touch .nojekyll
|
||
git init
|
||
git add -A
|
||
git commit -m '🎉🎉🎉仓库重置到2020年9月29日,Vue2.6最后一个版本,之前版本不再支持,具体请查阅文档,Vue 3.0版本请耐心等待!!!'
|
||
git push -f "https://${access_token}@gitee.com/chu1204505056/vue-admin-beautiful.git" master:gh-pages
|
||
start "https://gitee.com/chu1204505056/vue-admin-beautiful/pages"
|
||
git push -f "https://${access_token}@github.com/chuzhixin/vue-admin-beautiful.git" master:gh-pages
|
||
cd -
|
||
exec /bin/bash
|
||
|
||
|
||
|
||
|