Hexo中常用的命令
To create a new article, type:
1 | hexo new [layout] <title> |
To generate static files, type:
1 | hexo generate |
To starts a local server, type:
1 | hexo server |
To deploy your website, type:
1 | hexo deploy |
To clean the cache file (db.json
) and generated files (public
), type:
1 | hexo clean |