1. 安装nodo.js , git,学习markdown语言
如何安装nodo.js 如何安装git
什么是markdown
如何在github上建立仓库(注意:仓库名一定要是 你的github用户名.github.io )
如何使本地仓库与github的仓库建立关联
你要知道git的基本使用如:1
2
3
4//先cd你的仓库,然后
git add .//添加你的修改
git commit -m"注释"// -m可以不用写注释
git push//提交
2.安装HEXO
1 | npm install hexo-cli -g //cmd中输入 |
3.hexo 命令
1 | //打开一个文件夹 |
4.theme的转换
在github上搜索hexo theme
将下载好的theme文件放在theme目录之下
在配置文件config.yml找到theme变量
将变量的值landspace改为刚下载的theme的文件名,如果这步出错,首先怀疑是不是theme出啦问题。
(一定要记住保存,再打开git bash 搞事情)
hexo g生成静态文件到public
把pulic的文件传到github.io仓库就行
5.使用markdown写博文
介绍一款不错的markdown在线编辑器cmd markdown
几种流行的客户端
(注意:写博文,文件名一定要是xxxx.md,不然hexo g不能识别你写的文件)
markdown语言很简单,简单来说,就是不用鼠标就能完成简单排版的语言
6.一键部署到github
在config.yml末尾处配置deploy
1 | deploy: |
在git bash中输入命令1
2
3
4npm install hexo-deployer-git --save
npm install hexo-generator-searchdb --save
hexo g
hexo d
打开xxxx.github.io看下成功没。(注意:由于版本原因,type:github报错的话改成github)