pod install慢

pod install慢主要还是因为github上的代码库访问速度慢

  1. 只需要给github上的代码库设置个代理,我火箭socks端口是4781,对应你的换一下端口号
git config --global http.https://github.com.proxy socks5://127.0.0.1:4781
  1. cd到~/ 里找一下.gitconfig文件,command+shift+.可以看到隐藏文件,里面有了


  2. 移除的话,直接删,或者命令
git config --global --unset http.https://github.com.proxy

你可能感兴趣的:(pod install慢)