用git clone 报错:Failed to connect to android.googlesource.com port 443: Timed out的问题解决方法

解决方法,git需要走代理服务器。
git走代理的方法:
查看你的代理服务器
socket的话就用:
git config –global http.proxy ‘socks5://127.0.0.1:1080’
git config –global https.proxy ‘socks5://127.0.0.1:1080’

http的话:
git config –global https.proxy http://127.0.0.1:1080
git config –global https.proxy https://127.0.0.1:1080

例如:我的是socks5://127.0.0.1:1080
则用
git config –global http.proxy ‘socks5://127.0.0.1:1080’
git config –global https.proxy ‘socks5://127.0.0.1:1080’

是哪个就把proxy后面的地址替换成哪个

    原文作者:ae12
    原文地址: https://www.jianshu.com/p/cbe64e6609bf
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞