0%

hexo | hexo d 老是上传失败

首先检查

如果还是失败,就使用代理。

1
2
git config --global http.proxy "http://127.0.0.1:xxxx"
git config --global https.proxy "https://127.0.0.1:xxxx"

如果 http 不行,可以

1
2
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"

hexo d 即可部署;

最后取消代理,依次输入:

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy
请我喝杯咖啡吧~