问题总结,cocoa pod中,老是下载失败,可以试用一下方法
// 设置代理
/*
* git clone https://github.com/owner/git.git
* 这种走的是http协议,需要设置http代理
* 设置当前代理为 http://127.0.0.1:1080
*/
git config --global http.proxy http://127.0.0.1:1087
git config --global https.proxy https://127.0.0.1:1087
/*
* git clone git@github.com:owner/git.git
* 这种走的是ssh协议,需要设置ssh代理
* 设置当前代理为 socket5://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
// 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
// 查看代理
git config --global --get http.proxy
git config --global --get https.proxy
// 设置全局代理
vim ~/.zshrc
alias proxy='export all_proxy=socks5://[127.0.0.1](127.0.0.1):1080'
alias unproxy='unset all_proxy'
// 刷新
source ~/.zshrc
// 终端代理命令
export http_proxy=http://127.0.0.1:1081;export https_proxy=http://127.0.0.1:1081;
如果代理服务器需要登陆,这时可以直接把用户名和密码写进去
export http_proxy=http://userName:password@proxyAddress:port;http_proxy=http://userName:password@proxyAddress:port
// 取消终端代理
unset http_proxy;unset https_proxy;
网友评论