设置GIT代理

前言

很多同学在使用Git拉取代码被网络限制,速度很慢,本文给大家介绍如何给Git设置代理访问。
大家先自行准备好该有的代理

注意:

以下示例代码的端口要根据自己实际代理端口。

设置全局代理

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

取消全局代理

git config --global --unset http.proxy

设置当前代理

git config http.proxy http://127.0.0.1:1089

取消当前代理

git config --unset http.proxy

全局针对性设置代理,只对github.com

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

取消全局针对性代理

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

你可能感兴趣的:(git)