作为一个Android爱好者,在git项目的时候经常会需要git墙外的项目比如下面这样的。这时候就需要给git设置代理。参考文章
git clone https://android.googlesource.com/platform/packages/apps/Settings
前提
要给git设置代理,首先自己要有代理。我这次使用的是自己搭的vps。
设置
使用http或者https代理
git config --global https.proxy http://127.0.0.1:1080'
git config --global https.proxy 'https://127.0.0.1:1080'
或者使用sock5代理
git config --global https.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
网友评论