美文网首页
github加速也使用适用于pod install等

github加速也使用适用于pod install等

作者: falc0n | 来源:发表于2020-01-09 22:13 被阅读0次

    前提:需要有个ss代理

    方法:

    1. 查看本地ss监听端口,通产都是以下配置。

    2. git全局设置 

    Linux

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

    git config --global http.https://github.com.proxy socks5://127.0.0.1:1086

    Windows

    git config --global http.proxy socks5://127.0.0.1:1080

    git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

    3. 打开全局模式,搞定。实测速度在1-2M之间

    4. 若是想取消配置,以下命令恢复

    git config --global --unset http.proxy

    git config --global --unset http.https://github.com.proxy

    或者,也可以直接打开.gitconfig文件,删除掉正面的两行配置

    相关文章

      网友评论

          本文标题:github加速也使用适用于pod install等

          本文链接:https://www.haomeiwen.com/subject/uxpuactx.html