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

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

1.环境准备

1.1 安装Node.js

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

1.2 安装Git

  • 官网下载:Git
  • 验证安装
bash 复制代码
git --version

1.3 安装Hexo

bash 复制代码
npm install -g hexo-cli

2.项目搭建

1.1 新建文件夹

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

1.1 初始化项目

1. 初始化项目
复制代码
hexo init
  • 初始化成功后你可以在我们本地blogtest文件下看到如下文件
2.安装项目依赖(在当前博客目录 )

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

复制代码
hexo install
  • 安装成功如下:
4.本地预览
复制代码
hexo clean && hexo g && hexo s

访问 http://localhost:4000

3.关联GitHub Pages

1.创建仓库
  • 仓库名必须为:<用户名>.github.io(如 coderyihong.github.io
  • 勾选 Add a README file
2.配置部署
  • 安装Git部署插件

    npm install hexo-deployer-git --save

  • 修改 _config.yml

ts 复制代码
deploy:
  type: git
  //建议使用SSH协议  某些平台(如 GitHub)对 HTTPS 请求有严格的速率限制(尤其未登录时)。
  //SSH 连接不受此限制,如果不会切换可以按照下面步骤走
  repo: git@github.com:coderyihong/coderyihong.github.io.git
  branch: master
2.1.切换SSH协议
1. 生成 SSH 密钥
bash 复制代码
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 配置
yaml 复制代码
deploy:  type: git 
repo: git@github.com:你的用户名/仓库名.git  # SSH 地址格式  
branch: gh-pages
4. 测试连接
bash 复制代码
ssh -T git@github.com

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

3. 首次部署
bash 复制代码
hexo clean && hexo deploy -g

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

相关推荐
七牛开发者29 分钟前
告别反复调参,一个 Skill 让 AI 掌握论文图的视觉语法:以 DeepSeek V4.1 Flash 论文图为例
github·agent·deepseek
简创AIGC陶先生1 小时前
【直播切片工作台】第11章:剪辑项目模型 VideoProject
github
MicrosoftReactor1 小时前
技术速递|如何在不牺牲任务质量的前提下,让 AI 编码更具成本效益
人工智能·ai·github·copilot
中科三方2 小时前
DNS拨测到底在拨测什么?
开发语言·github·php·dns·云拨测
digital-Yun6 小时前
Harness 深度图解
github
码流怪侠7 小时前
Sunshine 深度拆解:当 NVIDIA GameStream 闭源后,如何用 4 万颗 Star 重建自托管云游戏
游戏·github·nvidia
Bmob后端云8 小时前
Bmob后端云实战|Python给备忘录接入AI摘要、文本润色功能
算法·github
夜焱辰8 小时前
EO2Weave 浏览器扩展正式上架 Chrome 应用商店:你的 AI 助手,从此住进每一个标签页
github
zzzzzz31011 小时前
anthropics/skills:高关注度“官方技能”项目,应该怎样读
人工智能·开源·github
阿里嘎多学长20 小时前
2026-09-09 GitHub 热点项目精选
开发语言·程序员·github·代码托管