解决hexo-github hexo g time out 443
最近github
又双叒叕抽风了😣🙄😓😶😶😶😶😶
观前提醒
为了解决github抽风问题,本文默认各位读者身经百战,有过多次跨栏经验。人手一个格局打开软件( ̄︶ ̄)↗ φ(* ̄0 ̄)
解决问题
要解决这个问题,需要使用代理,git设置代理的命令
1 | git config --global http.proxy 'socks5://127.0.0.1:10808' |
1 | git config --global https.proxy 'socks5://127.0.0.1:10808' |
如果不需要代理了,则可以运行
1 | git config --system (或 --global 或 --local) --unset http.proxy |
1 | git config --system (或 --global 或 --local) --unset https.proxy |