hexo 上传到github命令报错
bash
D:\Hexo\MyBolg>hexo d
INFO Validating config
INFO Deploying: git
INFO Clearing .deploy_git folder...
INFO Copying files from public folder...
INFO Copying files from extend dirs...
On branch master
nothing to commit, working tree clean
【无法访问Github仓库地址, 连接失败, 连接被重置】
fatal: unable to access 'https://github.com/your_username/project.git/': Recv failure: Connection was reset
FATAL Something's wrong. Maybe you can find the solution here: https://hexo.io/docs/troubleshooting.html
Error: Spawn failed
at ChildProcess.<anonymous> (D:\Hexo\MyBolg\node_modules\hexo-deployer-git\node_modules\hexo-util\lib\spawn.js:51:21)
at ChildProcess.emit (node:events:520:28)
at ChildProcess.cp.emit (D:\Hexo\MyBolg\node_modules\cross-spawn\lib\enoent.js:34:29)
at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)
可能的解决方法
- 在开启加速器的情况下, 经常会遇到这种情况, 可多次尝试上传;
- 关闭加速器尝试上传.
- 开启
虚拟网卡模式, 该模式接管了电脑上所有软件的流量, 包括命令行的Git.

- 完成上述操作后再次尝试上传
bash
D:\Hexo\MyBolg>hexo d
INFO Validating config
INFO Deploying: git
INFO Clearing .deploy_git folder...
INFO Copying files from public folder...
INFO Copying files from extend dirs...
On branch master
nothing to commit, working tree clean
Enumerating objects: 8, done.
Counting objects: 100% (8/8), done.
Delta compression using up to 16 threads
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 1.71 MiB | 448.00 KiB/s, done.
Total 5 (delta 3), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (3/3), completed with 3 local objects.
To https://github.com/your_username/project.git
0343aba..6a9d8ad HEAD -> main
branch 'master' set up to track 'https://github.com/your_username/project.git/main'.
INFO Deploy done: git
这次上传成功.