美文网首页📚苹果
使用代理为 git 加速

使用代理为 git 加速

作者: 瑛伟达 | 来源:发表于2020-01-14 23:55 被阅读0次

设置使用代理

将你的proxy server地址代替以下的127.0.0.1

http类型代理

git config --global http.proxy http://127.0.0.1:1080 (这条即可)

git config --global https.proxy https://127.0.0.1:1080

socks5类型代理

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 --get http.proxy

git config --global --get https.proxy

取消设置代理

git config --global --unset http.proxy

git config --global --unset https.proxy

设置使用需账户密码验证的代理

http类型代理

git config --global http.proxy http://username:passwd@127.0.0.1:1080

socks5类型代理

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

相关文章

网友评论

    本文标题:使用代理为 git 加速

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