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: [email protected]:coderyihong/coderyihong.github.io.git
  branch: master
2.1.切换SSH协议
1. 生成 SSH 密钥
bash 复制代码
ssh-keygen -t ed25519 -C "[email protected]"

(默认保存在 ~/.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: [email protected]:你的用户名/仓库名.git  # SSH 地址格式  
branch: gh-pages
4. 测试连接
bash 复制代码
ssh -T [email protected]

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

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

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

相关推荐
寻月隐君1 分钟前
探索Web3新速度:Sonic高性能Layer-1上的BlindAuction智能合约实践
后端·web3·github
油泼辣子多加4 分钟前
2025年06月07日Github流行趋势
github
Moment29 分钟前
给大家推荐一个超好用的 Marsview 低代码平台 🤩🤩🤩
前端·javascript·github
独立开阀者_FwtCoder1 小时前
stagewise:让AI与代码编辑器无缝连接
前端·javascript·github
Morpheon11 小时前
Cursor 1.0 版本 GitHub MCP 全面指南:从安装到工作流增强
ide·github·cursor·mcp
LinXunFeng14 小时前
Flutter - GetX Helper 助你规范应用 tag
flutter·github·visual studio code
草梅友仁15 小时前
AI 图片文字翻译与视频字幕翻译工具推荐 | 2025 年第 23 周草梅周报
开源·github·aigc
qianmoQ19 小时前
GitHub 趋势日报 (2025年06月04日)
github
abcnull20 小时前
github中main与master,master无法合并到main
git·github
星哥说事21 小时前
使用VuePress2.X构建个人知识博客,并且用个人域名部署到GitHub Pages中
开源·github