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

相关推荐
opentrending6 小时前
Github 热点项目 awesome-mcp-servers MCP 服务器合集,3分钟实现AI模型自由操控万物!
服务器·人工智能·github
uhakadotcom10 小时前
Thrift2: HBase 多语言访问的利器
后端·面试·github
uhakadotcom12 小时前
轻松掌握XXL-JOB:分布式任务调度的利器
后端·面试·github
Galerkin码农选手13 小时前
github合并多个commit message以及rebase解决文件冲突
github
hac132214 小时前
利用GitHub Pages快速部署前端框架静态网页
前端框架·github
程序员晚枫1 天前
又给腾讯贡献了一段代码:从 `%` 格式化到 f-string 的改进
python·开源·github
斯普信专业组1 天前
Ceph与Bacula运维实战:数据迁移与备份配置优化指南
运维·ceph·github
HelloGitHub1 天前
想让你多爱自己一些的开源计时器
开源·github
宅小海1 天前
11 配置Hadoop集群-免密登录
大数据·hadoop·github
雨声不在1 天前
用mkdocs写文档#自动更新github-page
github