📚苹果

使用代理为 git 加速

2020-01-14  本文已影响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

上一篇 下一篇

猜你喜欢

热点阅读