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.
Hexo常用操作
创建新的博客文章
$ hexo new "My New Post"
More info: Writing
运行本地服务器
$ hexo server
或者
$ hexo s
- 用于启动本地server,预览主题,预览地址为: http://localhost:4000/
- 预览同时,可以随时修改文章内容、主题代码。保存后刷新网页即可
- 如果对Hexo根目录_config.yml进行修改,需要重启本地服务器后才能预览效果
More info: Server
部署到远程服务器
$ hexo deploy
或者
$ hexo d
- 自动生成网站静态文件public,并部署到远程服务器
More info: Deployment
生成静态文件
$ hexo generate
或者
$ hexo g
- 生成网站静态文件,保存到默认public文件夹
- 如果使用自动部署命令hexo d,则不需要先执行该命令
More info: Generating
清除缓存文件
$ hexo clean
- 清除缓存文件db.json与静态文件夹public
- 网站显示异常时,可以执行改命令
创建aboutme
页面
$ hexo new page aboutme
- 新建标题为
aboutme
的页面,默认地址:主页地址/aboutme
- 页面标题和文章一样,可以随意修改,也可以改为中文
- 页面不会出现在首页文章列表和归档中,不支持设置分类和标签