使用hexo d上传博客时出现以下两种错误 :

error: 403

1
fatal: unable to access 'https://github.com/xxx/xxx.github.io/': The requested URL returned error: 403

或者 errno 10054

1
fatal: unable to access 'https://github.com/xxx/xxx.github.io/': OpenSSL SSL_read: Connection was reset, errno 10054

解决办法:将_config.yml文件中的http链接修改成ssh的链接

1
2
3
4
deploy:
type: "git"
repo: git@github.com:xxx/xxx.github.io.git
branch: main

若还出现以下错误:

1
2
remote: error: GH007: Your push would publish a private email address.

将GitHub的setting—>emails—>Keep my email addresses private勾选取消即可。

hexo d 出现 hexo help

1
$ hexo g -d

使用这个可以解决,具体也不太清楚,反正之前不行的行了