mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-28 09:26:28 +08:00
14 lines
235 B
Bash
14 lines
235 B
Bash
# This script is borrowed from https://gist.github.com/cobyism/4730490
|
|
|
|
cd build
|
|
git add .
|
|
git commit -m "build"
|
|
git push -u origin docs
|
|
cd ..
|
|
|
|
mkdocs build --clean
|
|
|
|
cd site
|
|
git add .
|
|
git commit -m "deploy"
|
|
git push -u origin gh-pages
|