文章开始
文章结尾
hexo init
命令用于初始化本地文件夹为网站的根目录
$ hexo init [folder] |
folder
可选参数,用以指定初始化目录的路径,若无指定则默认为当前目录hexo new [layout] <title>
hexo generate
或 hexo g
-d 或--deploy
文件生成后部署网站-w 或--watch
监视文件变动-b 或--bail
生成过程中出现异常则抛出。-f 或--force
强制重新生成文件-c 或--concurrency
最大同时生成文件数量,默认无限制。hexo publish [layout] <filename>
hexo server
或hexo s
启动服务器,ctrl+c 结束,默认地址为:http://localhost:4000/
暂时修改启动端口:
hexo s -p 80 |
hexo deploy
或hexo d
-g 或--generate
部署之前写成静态文件hexo render <file1> [file2]
-o或--output
设置输出路径hexo clean
或hexo cl
hexo list <type>
hexo --deaft
hexo --cwd /path/to/cwd
hexo --safe
表示安全模式,用于禁用加载插件和脚本
$ hexo --safe |
安装新插件时遇到问题可尝试此操作
hexo --debug
表示调试模式,用于将消息详细记录到终端和 debug.log
文件
$ hexo --debug |
hexo --silent
表示静默模式,用于静默输出到终端
$ hexo --silent |