1、hexo环境搭建
- 参考网站 Hexo+GitHub搭建博客CSDN
- 创建git仓库 morningLu.github.io
- 安装文件
- git 可以上传代码
- 生成项目文件
- 在一个空的文件夹下执行git-bash命令 hexo init
- hexo new xxxx (生成md文件,xxxx为md文件名字)
- hexo s (本地预览 local)
- hexo g (生成静态文件)
- hexo d (public文件夹上传到git,ps: 上传到git前要hexo g, 本地预览不需要)
- hexo和github进行关联
更改_config.ym文件1
2
3
4deploy:
type: git
repository: git@github.com:morningLu/morningLu.github.io.git (ssh https)
branch: master (分支)2、hexo 生成博文插入本地图片
- 参考网站 csdn原文
- 把主页配置文件_config.yml 里的post_asset_folder:这个选项设置为true
- git-bash 可以上传本地图片的插件安装: npm install hexo-asset-image --save
- hexo n “xxxx” (xxxx为对应md文件名字)
- 
3、hexo 创建分类
- hexo new page xxxx (xxxx为分类名)
- 在文章的最上面添加 categories:
1
2
3
4
5title: 摄影基础课
date: 2018-12-25 17:10:26
tags:
categories:
- 摄影
4、 hexo 项目迁移(在新的电脑上继续写博客)
- 把hexo init创建的文件夹全部提交到git仓库(需要新建一个仓库)
- 创建文件夹拉取代码
- git bash执行 npm install hexo --save