Git Clone下載倉庫代碼的時候,出現以下情況
Failed to connect to github.com port 443: Timed out
解決辦法:
輸入
git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy http://127.0.0.1:1080
再git clone,就能正常下載代碼
參考:
IDEA連接Github時出現:Failed to connect to github.com port 443: Connection refused的解決方法