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