Hexo quickly build your home page by GitHub Pages.
Init
1 | $ hexo init |
Generate static files
1 | $ hexo g |
Run server
1 | $ hexo s |
Deploy config
1 | # _config.yml |
Deploy to github
1 | $ hexo d |
Create a new post
1 | $ hexo new "My New Post" |
Create a new draft
1 | $ hexo new draft "My new Draft" |
Publish a draft
1 | $ hexo publish "My new Draft" |