Makefile 505 B

12345678910111213141516
  1. # Rebuild and push the awesome-cl website manually.
  2. # Travis CI is set up to automatically deploy new changes on commits
  3. # to master, but this can be run directly if the site needs to be
  4. # deployed for some reason.
  5. gh-pages:
  6. git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
  7. git fetch
  8. git checkout gh-pages
  9. git pull --rebase origin gh-pages
  10. git show master:README.md > index.md
  11. git add index.md
  12. git commit -m "Rebuild index.md"
  13. git push -u origin gh-pages
  14. git checkout master