Git上传报错fatal:

unable to access 'https://github.com/mygithubma/gridea_images.git/': Failed to connect to github.com port 443 after 21093 ms: Could not connect to server

由于网络连接问题或代理设置:

git config --global --unset http.proxy 
git config --global --unset https.proxy
git config  --global http.proxy 127.0.0.1:7897
git config  --global https.proxy 127.0.0.1:7897
赞赏