zhenging / cis233

Notes of CIS 233

Home Page:https://zhenging.github.io/cis233/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Notes of CIS 241

To enable git commit hook:

touch .git/hooks/post-commit
echo 'echo "Start to build and deploy ..."\nnpm run build && npm run deploy' > .git/hooks/post-commit
chmod +x .git/hooks/post-commit