Hexo+Git搭建博客


Hexo+git搭建博客

一.准备工作

创建github账号

这个不用多说,跟着步骤注册,登录后进入仓库

image-20220313150951882

new一个新的仓库

image-20220313151149841

名称填写,用户名加github.io,勾选readme.md

image-20220313151402566

安装git,node.js

Node.js下载地址:https://nodejs.org/en/

Git:https://git-scm.com/

安装完之后可以通过git bash here打开终端,然后查看版本,就算完成安装了

image-20220313152319832

二.安装、配置hexo

新建一个文件夹,用于存放博客,打开Git bash here

使用npm命令安装Hexo,输入:

npm install -g hexo-cli

安装完成后运行

hexo init
npm install

三.本地启动Hexo

输入命令:

hexo g #生成
hexo s #启动本地服务器,默认是http://localhost:4000查看

四.将Hexo部署到github上

1.编辑根目录下_config.yml文件

# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
  type: git
  repo: #仓库地址
  branch: main

2.安装扩展

npm install hexo-deployer-git --save

3.设置用户信息

$ git config --global user.name "注册时候的用户名"          
$ git config --global user.email  "邮件地址@youremail.com"  

4.添加ssh key到github上

ssh-keygen -t rsa -C "邮件地址@youremail.com"   # 生成Key   
# 在 C:/User/username/.ssh/文件里面 
ssh -T git@github.com # 测试我们的Key是否添加成功 

5.完成部署,上传

hexo d

文章作者: Broken-year
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 Broken-year !
  目录