Hexo使用

Posted td1900

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hexo使用相关的知识,希望对你有一定的参考价值。

官方主题:https://hexo.io/themes/

1.下载主题

$ git clone https://github.com/litten/hexo-theme-yilia.git themes/yilia

下载后的主题在themes文件夹中

2.修改_config.yml中的theme: landscape改为theme: yilia,然后重新执行hexo g来重新生成。
如果出现一些莫名其妙的问题,可以先执行hexo clean来清理一下public的内容,然后再来重新生成和发布。

3.安装插件

npm install hexo-deployer-git --save
  1. 输入 hexo d
    6.手动将README.md复制到public目录,并删除README.html

常用hexo命令

hexo new "postName" #新建文章
hexo new page "pageName" #新建页面
hexo generate #生成静态页面至public目录
hexo server #开启预览访问端口(默认端口4000,'ctrl + c'关闭server)
hexo deploy #部署到GitHub
hexo help  # 查看帮助
hexo version  #查看Hexo的版本

缩写

hexo n == hexo new
hexo g == hexo generate
hexo s == hexo server
hexo d == hexo deploy

组合命令

hexo s -g #生成并本地预览
hexo d -g #生成并上传

以上是关于Hexo使用的主要内容,如果未能解决你的问题,请参考以下文章

使用 CODING 进行 Hexo 项目的持续集成

配置HEXO

配置HEXO

阿里云开发零基础免费搭建个人Hexo博客

使用Hexo+Github Pages 来搭建免费的专属博客

《Hexo: 从零开始编写自己的主题》2. 入门Hexo主题编写