hexo+GitHub Pages搭建个人博客完整教程

发布于:2025-03-31 ⋅ 阅读:(21) ⋅ 点赞:(0)

hexo+GitHub Pages搭建个人博客完整教程

1.环境准备

1.1 安装Node.js

  • 官网下载:Node.Js 选择LTS版本
  • 验证安装:
node -V #查看Node.js版本(需>=14)
npm -V  #查看npm版本
node -V && npm -V
  • 注意:国内建议换到淘宝镜像源
npm config set registry https://registry.npmmirror.com

1.2 安装Git

  • 官网下载:Git
  • 验证安装
git --version

1.3 安装Hexo

npm install -g hexo-cli

2.项目搭建

1.1 新建文件夹

  • 比如在我的D盘创建hexo/blogtest文件夹

image-20250330171411120

1.1 初始化项目

1. 初始化项目
hexo init
  • 初始化成功后你可以在我们本地blogtest文件下看到如下文件

image-20250330171626585

2.安装项目依赖(在当前博客目录 )

如果不在当前博客目录,切换一下就好了,拿我的举例子例,如 cd ./hexo/blogtest

hexo install
  • 安装成功如下:

image-20250330171918952

4.本地预览
hexo clean && hexo g && hexo s

访问 http://localhost:4000

image-20250330172837225

3.关联GitHub Pages

1.创建仓库
  • 仓库名必须为:<用户名>.github.io(如 coderyihong.github.io
  • 勾选 Add a README file
2.配置部署
  • 安装Git部署插件
npm install hexo-deployer-git --save
  • 修改 _config.yml
deploy:
  type: git
  //建议使用SSH协议  某些平台(如 GitHub)对 HTTPS 请求有严格的速率限制(尤其未登录时)。
  //SSH 连接不受此限制,如果不会切换可以按照下面步骤走
  repo: git@github.com:coderyihong/coderyihong.github.io.git
  branch: master
2.1.切换SSH协议
1. 生成 SSH 密钥
ssh-keygen -t ed25519 -C "your_email@example.com"

(默认保存在 ~/.ssh/id_ed25519.pub

2. 将公钥添加到 Git 平台
  • GitHub: Settings → SSH and GPG keys
  • GitLab: Preferences → SSH Keys
  • Gitee: 设置 → SSH 公钥
3. 修改 Hexo 配置
deploy:  type: git 
repo: git@github.com:你的用户名/仓库名.git  # SSH 地址格式  
branch: gh-pages
4. 测试连接
ssh -T git@github.com

看到 Hi 用户名! You've successfully authenticated 即表示成功。

3. 首次部署
hexo clean && hexo deploy -g

等待1-2分钟后访问 https://coderyihong.github.io

image-20250330173719060


网站公告

今日签到

点亮在社区的每一天
去签到