Hexo 命令简介
Cleans the cache file
1 | $ hexo clean |
删除缓存 (db.json和生成的public文件)
More info: Clean
Create a new post
1 | $ hexo new "xxx" |
然后就会在 {hexo目录}/source/_posts生成xxx.md文件 eg: hexoBlog/source/_posts
More info: Writing
Generate static files
1 | $ hexo g |
生成对应静态文件
More info: Generating
Run server
1 | $ hexo s |
启动hexo服务器本地预览,打开 http://localhost:4000 即可查看效果
More info: Server
Deploy to remote sites
1 | $ hexo d |
发布到远端,以发布到github为例
- 需提前在 {hexo目录}/_config.yml文件的deploy节点下配置对应的数据,如 type,repo,banch等
- 可配合hexo-deployer-git插件使用
npm install hexo-deployer-git --save
当然也可不用该快捷命令直接将hexo g 生成的静态文件提交到git仓库也行.
More info: Deployment