05月05, 2019

Git设置代理方法

第一种方法:

设置代理

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

127.0.0.1:1080 shadowsocks的本地端口

取消代理

git config --global --unset http.proxy
git config --global --unset https.proxy


第二种方法:

在环境变量新增http_proxy, 值为socks5://127.0.0.1:1080


第三种方法:

打开用户主目录下的隐藏文件.gitconfig,文件位于用户主目录下

在.gitconfig文件末尾添加如下内容:

[http]
    proxy = socks5://127.0.0.1:1080

proxy之前有个tab键,其中的socks5://127.0.0.1:1080为ss服务器的本地IP和端口


本文链接:https://lxyit.com/article/show/197.html

-- EOF --