搭建步骤说明
第一步:创建仓库
username.github.io
第二步:安装脚手架
sudo npm install hexo-cli -g
第三步:创建博客
hexo init username.github.io
第四步:更改配置
cd username.github.io
主题安装
git clone https://github.com/iissnan/hexo-theme-next themes/next
基础配置(键值之间一定要有空格)
title: 博客的名字
author: 作者名字
language: zh-Hans //语言 中文
theme: next //刚刚安装的主题名称
deploy:
type: git //使用Git 发布
repo: https://github.com/username/username.github.io.git // 刚创建的Github仓库
第五步:写文章 在
username.github.io/source/_posts
中添加 md 文件第六步:启动测试服务 hexo s ;在 localhost:4000 中访问
第七步:安装hexo-deployer-git自动部署发布工具 npm install hexo-deployer-git –save
第八步:发布 hexo clean && hexo g && hexo d (第一次输入Github 的邮箱和密码)