cocoaPods源被墙问题

直接clone'https://github.com/CocoaPods/Specs.git'会很慢,还会中断重来。崩溃了

以下亲测方式可解决:

找到ss代理的IP和port

git config --global http.proxy 'socks5://127.0.0.1:1086'

git config --global https.proxy 'socks5://127.0.0.1:1086'

再执行git clone即可解决问题


搞定之后再重置代理:

git config --global --unset http.proxy

git config --global --unset https.proxy

你可能感兴趣的:(cocoaPods源被墙问题)