Hexo常用命令
Hexo 约有二十个命令,但普通用户经常使用的大概只有下列几个:
hexo s1hexo s
启动本地服务器,用于预览主题。默认地址:http://localhost:4000/
hexo s 是 hexo server 的缩写,命令效果一致;
预览的同时可以修改文章内容或主题代码,保存后刷新页面即可;
对 Hexo 根目录 _config.yml文件 的修改,需要重启本地服务器后才能预览效果。
hexo n1hexo n "vue的使用"
新建一篇标题为 【vue的使用】 的文章
文章标题可以在对应 md 文件里改,新建时标题可以写的简单些;
hexo n 是 hexo new 的缩写,命令效果一致。
hexo d1hexo d
自动生成网站静态文件,并部署到设定的仓库。
hexo d 是 hexo deploy 的缩写,命令效果一致。
hexo clean1hexo clean
清除缓存文件 db.json 和已生成的静态文件 public。
网站显示异常时可以执行这条命令试试。
hexo g1hexo g
生成网站静态文件到 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment