123456789101112131415161718192021222324 |
- #!/bin/bash
- exit 0
- git fetch
- git checkout gh-pages
- git pull
- git checkout --orphan gh-pages-temp
- rm -rf node_modules
- rm -rf coverage
- rm -rf packages
- rm -rf test
- git add -A
- git commit -am "refresh history"
- git branch -D gh-pages
- git branch -m gh-pages
- git push -f origin gh-pages
|