创建blog

byjiangjb Lv2

创建blog

利用hexo+github创建个人博客

安装Git和Node.js

本人有安装包,一路next就可以了。

blog-1
这就是安装成功了。

连接 Github

1
2
git config --global user.name "GitHub 用户名"
git config --global user.email "GitHub 邮箱"

blog-2

创建 SSH 密匙

1
ssh-keygen -t rsa -C "GitHub 邮箱"

blog-3

建立连接

将上一步生成的密钥保存至github中

blog-4
blog-5

验证是否连接成功

1
ssh -T git@github.com

创建Github仓库

点击头像选择”Your repositories”——>new

Repository name 中输入 用户名.github.io

勾选 “Initialize this repository with a README”

Description 选填

本地安装 Hexo 博客程序

创建一个空白文件夹(保存blog的相关相关配置)

在这个空白文件夹里 右键——>Git Bash Here
依次输入:

1
2
3
4
5
//安装 Hexo 博客程序
npm install -g hexo-cli
//初始化并安装所需组件
hexo init # 初始化
npm install # 安装组件

blog-6

启动本地服务并预览

1
2
hexo g   # 生成页面
hexo s # 启动预览

blog-7
blog-8

配置自己喜欢的主题

安装 hexo-deployer-git:

1
npm install hexo-deployer-git --save

修改修改 _config.yml 文件

1
2
3
4
deploy:
type: git
repository: git@github.com:用户名/用户名.github.io.git
branch: master

blog-9

配置主题

详情请前往hexo主题官网查看具体步骤:https://hexo.io/themes/

查看是否生效

1
2
3
hexo g #生成页面
hexo d #部署到github仓库
hexo s #预览页面

blog-10

  • Title: 创建blog
  • Author: byjiangjb
  • Created at : 2023-04-07 09:18:01
  • Updated at : 2023-04-11 16:38:20
  • Link: https://redefine.ohevan.com/2023/04/07/创建blog/
  • License: This work is licensed under CC BY-NC-SA 4.0.