1 软件安装和 Hexo 下载

安装 git, node, Sublime Text(也可以 vscode)
命令提示符打开创建的文件夹

1
2
3
4
5
npm install hexo-cli -g
hexo init aikeblog
cd aikeblog
npm install
hexo s

2 github 账户设置

注册 github 账户, 创建厂库,命名格式 Aike505.github.io

1
npm install hexo-deployer-git --save

打开 git 下 git bash 输入:

1
2
3
git config --global user.name "aikeblog"
git config --global user.email "1736134512@qq.com"
ssh-keygen -t rsa -C "1736134512@qq.com"

会提示输入密码两次
在新创建的.ssh 文件复制公钥,粘贴纸 github 的 SSH and GPG keys 上
将 aikeblog 在 vscode 打开,在_config.yml 配置文件末尾修改

3 Hexo 里参数设置

1
2
3
4
5
6
url: https://Aike505.github.io
root: /
deploy:
type: git
repo: https://github.com/Aike505/Aike505.github.io.git
branch: main

在 aikeblog 下面 hexo cl && hexo g -d hexo s
这里就基本部署完成了 用 Aike505.github.io 就可以打开网址


更多

非常不错的视频教程
官方文档|Hexo