Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 347 Bytes

github-page-deploy.sh

File metadata and controls

10 lines (8 loc) · 347 Bytes
#!/bin/bash github() { git config --global user.name sunnnychan git config --global user.email sunnnychan@gmail.com git config core.ignorecase false git $@ } cd .vuepress/dist && rm -rf .git && github init && github add . && github commit -m "sunnychan" && github push -f https://github.com/SC-CS-KS/KS-GrowthHacking master:gh-pages