哔哔

emm
最近更了几篇文

在看我自己博客的时候突然发现

我忘了写hexo上传的教程

sorry!

所以今天它就来了!

:::warning
本教程并不适用于腾讯云阿里云等等的服务器

仅适用于github和gitee
:::

首先安装hexo的git上传器

1
cnpm i hexo-deployer-git --save

然后在%blogroot%/_config.yml中,找到deploy字段

改为:
1
2
3
4
deploy: 
type: git
repo: https://github.com/用户名/仓库
branch: 分支

如果你想同时上传到gitee和github
请按照如下示例格式填写:
1
2
3
4
5
6
7
8
9
deploy: 
type: git
repo:
- https://gitee.com/用户名/仓库 #这是gitee
- https://github.com/用户名/仓库 #这是github
branch:
- main
- master
# gitee默认主分支是main,github默认是master,这里我就都上传了,省事!

然后运行
1
hexo cl && hexo g && hexo d

:::danger
如果是powershell就把&&换成一个|就好了
就像下面这样:
1
hexo cl | hexo g | hexo d