在windows端使用git向github上提交代碼時經常報錯failed to connect to github.com port 443
,有時候能順利提交,但是大概率需要連續提交好幾次才能成功。
解決辦法:使用git bash,輸入git config --global http.proxy http://127.0.0.1:7081
和git config --global https.proxy http://127.0.0.1:7081
后解決。其中7081是我的FQ軟件綁定的端口。