Please enable Javascript to view the contents

Github 常见错误处理

 ·  ☕ 1 分钟

fatal: unable to access ‘https://github.com/openai/whisper.git/': Failed to connect to github.com port 443 after 21123 ms: Couldn’t connect to server

以下不正确

git config –global http.proxy socks5 127.0.0.1:7890
git config –global https.proxy socks5 127.0.0.1:7890

以下正确
git config –global http.proxy 127.0.0.1:7890
git config –global https.proxy 127.0.0.1:7890

取消代理命令
git config –global –unset http.proxy
git config –global –unset https.proxy

git config –global –replace-all https.proxy 127.0.0.1:7890

分享

码中人
作者
码中人
Web Developer