GitHub+Hexo搭建个人博客
GitHub创建个人仓库
仓库名必须为:用户名.github.io
搭建博客需要的工具
Git
Node.js
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 | hexo init #初始化hexo |
本地博客发布到互联网
修改博客文件夹中的_config.yml文件
1 | deploy: |
在博客文件夹中打开git bash
安装hexo-deployer-git自动部署发布工具
1 | npm install hexo-deployer-git --save |
在弹出的窗口中验证github账号
然后大功告成,可以用仓库名当作地址直接访问博客了
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 62bit的秘密基地!