GitHub创建个人仓库

仓库名必须为:用户名.github.io

搭建博客需要的工具

Git

Node.js

nodejs安装及环境配置

Hexo

1
npm install hexo-cli -g

遇到的坑:安装完hexo之后,运行hexo -v命令,提示:bash:hexo:command not found

解决办法:完美解决 bash: hexo: command not found

生成SSH Keys

1
ssh-keygen -t rsa -C "GitHub注册邮箱"

找到 C:\Users\当前用户\ .ssh文件夹中的id_rsa.pub密钥

将密钥内容复制到GitHub_Settings_SSH and GPG keys中的SSH keys中

测试SSH是否绑定成功

1
ssh -T git@github.com

在本地创建仓库

本地新建一个博客文件夹

在博客文件夹中打开git bash

1
2
3
hexo init #初始化hexo
npm install hexo-server --save #安装hexo-server
hexo s #启动server

本地博客发布到互联网

修改博客文件夹中的_config.yml文件

1
2
3
4
deploy:
type: git
repository: github仓库的地址
branch: main

在博客文件夹中打开git bash

安装hexo-deployer-git自动部署发布工具

1
2
3
npm install hexo-deployer-git --save
hexo g #generate生成
hexo d #deploy上传

在弹出的窗口中验证github账号

然后大功告成,可以用仓库名当作地址直接访问博客了