闲话不扯,直入正题
方案一:(最快最简单)
1.从同事那里把pod repos的.git文件copy过来
目录 "~/.cocoapods/repos/master/.git" 只拷贝.git目录就行(一共几百兆,几秒钟就拷贝完成)
2.把.git放入自己电脑的"~/.cocoapods/repos/master/ "目录
3.终端 cd 到自己电脑 "~/.cocoapods/repos/master/"
执行 "git reset --hard"
4.pod setup完成 哈哈,是不是很快,很bug
原理就不解释了,懂得一看就懂, 不懂的就别管他了,正常用就行了
方案二:(前提是有梯子)
终端使用代理
#ps:1080为本地代理端口,每个人的可能不一样
git config --global https.proxy http://127.0.0.1:1080;
git config --global https.proxy https://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
网友评论