安装git
https://www.cnblogs.com/TD1900/p/12322612.html
安装Node.js https://www.cnblogs.com/TD1900/p/12322767.html
安装Hexo
打开git bash,输入命令:
$ cnpm install -g hexo-cli
本地搭建hexo博客
1.在电脑上新建一个专门存放博客的文件夹
2.在该文件夹下右键-git bash here
3.输入
hexo init //在本地生成hexo模板
4.输入
hexo server
5.浏览器访问:http://localhost:4000,即可查看hexo博客页面
将博客托管到GitHub上
1.GitHub创建项目,命名:
2.打开刚才新建文件夹,打开_config.yml配置文件,找到deploy,进行如下配置。
deploy:
type: git
repository: git@github.com:824260326/824260326.github.io.git //将地址换成自己的
branch: master
注意格式不能错:
(1)冒号后面一定要有一个空格
(2)type,repository,branch的首字母要对齐
3.cmd运行下面三条命令
npm install hexo-deployer-git --save
hexo g //(本地生成静态文件)
hexo d //(将本地静态文件推送至Github)
4.打开浏览器,访问 http://824260326.github.io