1 Star 0 Fork 552

wuji00 / cs-wiki

forked from 小牛肉 / cs-wiki 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
deploy.sh 411 Bytes
一键复制 编辑 原始数据 按行查看 历史
小牛肉 提交于 2022-03-20 15:05 . 更新
#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
# 更新 master
git add -A
git commit -m "更新"
git push
# 更新 gh-pages
cd vuepress-doc
npm run build # 生成静态文件
cd docs/.vuepress/dist # 进入生成的文件夹
git init
git add -A
git commit -m 'deploy'
# 发布到 https://<USERNAME>.github.io/<REPO>
git push -f git@github.com:veal98/cs-wiki.git master:gh-pages
cd -
cd ../
Java
1
https://gitee.com/great00/cs-wiki.git
git@gitee.com:great00/cs-wiki.git
great00
cs-wiki
cs-wiki
master

搜索帮助