hello-algo/deploy.sh

9 lines
157 B
Bash
Raw Normal View History

2022-12-15 01:12:03 +08:00
rm -rf ./site
2022-12-11 18:41:15 +08:00
mkdocs build --clean
2022-11-04 19:09:51 +08:00
cd site
git init
git add -A
2023-01-12 04:23:17 +08:00
git commit -m "deploy"
2022-11-08 02:58:42 +08:00
git push -f git@github.com:krahets/hello-algo.git master:gh-pages
2022-11-04 19:09:51 +08:00
cd -