博客的Git配置

  • Git的配置与使用,可以参考我另一篇文章,在此不在赘述。
  • Git配置与使用

Hexo Github 配置

  • 创建一个仓库,名为:自己用户名 + .github.io
1
2
#例如我的就是
winward-king.github.io

修改博客 _config.yml 文件的配置

  1. 打开博客根目录的 _config.yml 文件,找到下面这个位置
1
2
3
4
5
6
7
# Deployment
## Docs: https://hexo.io/docs/one-command-deployment
deploy:
type: git
repo:
github: https://github.com/自己用户名/自己用户名.github.io.git
branch: master #
  • 将以下信息添加到repo:里面去,main or master选择对应的分支
1
https://自己用户名.github.io
  1. 修改主题链接的URL
1
2
3
4
5
6
7
8
# URL
## Set your site url here. For example, if you use GitHub Page, set url as 'https://username.github.io/project'
url: https://winward-king.github.io/ #替换成你自己的链接
permalink: :year/:month/:day/:title/
permalink_defaults:
pretty_urls:
trailing_index: true # Set to false to remove trailing 'index.html' from permalinks
trailing_html: true # Set to false to remove trailing '.html' from permalinks

博客的备份

  1. 在Github上创建一个仓库,名字随便
  2. 通过Git命令推送,并保持更新
  3. 配置.gitignore
1
2
3
4
5
6
7
8
.DS_Store
Thumbs.db
db.json
*.log
node_modules/
public/
.deploy*/
_multiconfig.yml