63.将Hexo推送至Github Pages

hexo-deployer-git的GitHub项目页:点击此处

1.安装hexo-deployer-git插件

1
npm install hexo-deployer-git --save

2.修改blog文件夹下的_config.yml
修改前:

1
2
3
4
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: ''

修改后:

1
2
3
4
5
6
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: git
repo: https://github.com/kukusun/kukusun.github.io.git
branch: master

3.推送至Github Pages
在自己的GitHub帐号中创建一个repository,名称为:用户名.github.io
设置git的邮箱与名称,以前设置过就无需再次设置

1
2
git config --global user.email "you@example.com"
git config --global user.name "Your Name"

用命令推送:

1
hexo d

此时可能需要设置GitHub帐号的登陆,可以直接登录,也可以用token方式推送Blog
如果选择用token方式则点击此处跳转token管理界面
token创建步骤

  • 右上角Generate new token处选择Generate new token (classic)
  • Note写入自定义的名称
  • Expiration设置过期时间
  • Select scopes中将repo栏中的选项全部勾选
  • Copyrights © 2023-2024 kukusun