gitee+hexo博客

gitee等代码托管平台搭建hexo博客

hexo官方文档:https://hexo.io/zh-cn/

1.工具安装
安装node.js,下载
安装git工具,下载

1
2
3
# 查看node是否安装成功
node -v
npm -v

2.安装hexo
  创建一个文件夹作为博客目录,右键 → Git Bsah Here打开

1
2
# 在新打开的命令窗口中执行
npm install hexo-cli -g

3.初始化环境

1
2
# 进入博客目录下
hexo init

4.启动本地服务

1
2
hexo server # 或简写hexo s
# 提示Start processing后,浏览器打开http://localhost:4000

5.gitee项目仓库地址
  得到gitee中项目仓库的地址https://gitee.com/xxinin/blog

6.打开博客目录下的_config.yml文件

1
2
3
4
5
# 修改以下配置:
deploy:
type: git
repo: https://gitee.com/xxinin/blog #将地址换成自己的地址
branch: master

7.同步至gitee仓库

1
2
# 首次要安装一个部署插件
npm install hexo-deployer-git --save

1
2
3
4
hexo clean     # 清空旧缓存
hexo generate # 生成静态文件,可以用简写hexo g
hexo deploy # 推送到gitee,可以用简写hexo d
# 输入gitee的用户名和密码(本人在这边出现问题用户名登录好像只能使用邮箱,用户名登录不上去)

8.登录
首次同步会要求登录gitee的账户,正常输入即可,通常情况下登陆一次就会有在本地保存凭据

若hexo d同步时报错

1
unable to access 'https://gitee.com/xxinin/blog/': The requested URL returned error: 403

说明本地存在其他账户的凭据,打开控制面板→用户账户→管理windows凭据→删除和gitee相关的凭据即可

9.开启gitee pages服务

开启后得到域名https://xxinin.gitee.io/blog
填入_config.yml中url

10.其它配置不作详细描述
hexo 官方中文文档

11.hexo基本操作命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
hexo new post "post-name" # 新建文章,新建的文章在"根目录\source\_posts\"目录下
hexo new page "page-name" # 新建页面,新建的页面在"根目录\source\page-name\"目录下
hexo version # 显示hexo版本
hexo generate # 生成静态页面至public目录
hexo deploy # 将静态页面部署到Git服务器
hexo server # 开启预览访问端口,默认浏览地址为http://localhost:4000/,"ctrl + c"关闭server
hexo clean # 清理public目录下静态页面缓存文件
hexo help # 查看帮助
hexo version #查看Hexo的版本

# 对应命令可缩写为
# hexo n == hexo new
# hexo g == hexo generate
# hexo s == hexo server
# hexo d == hexo deploy