国内现在访问
git
速度太慢了,记录下配置的代理,来自 Windows git和cmd代理设置
配置代理
代理类型是 http
值为: http://127.0.0.1:7777
, 为 SOCKS5
时值为: socks5://127.0.0.1:7777
Git 代理
临时代理:
1 | export http_proxy=http://127.0.0.1:7777 |
永久代理:
命令方式:
1
2git config --global http.proxy http://127.0.0.1:7777
git config --global https.proxy http://127.0.0.1:7777修改配置文件方式, 进入用户名根路径,找到
.gitconfig
文件,修改为:1
2
3
4[http]
proxy = http://127.0.0.1:7777
[https]
proxy = http://127.0.0.1:7777
查看代理状态:
1 | git config --get --global http.proxy |
单独查看 socks5
代理模式情况:
1 | git config --get --global http.proxy socks5 |
取消代理:
1 | git config --global --unset http.proxy |
CMD 代理
临时代理:
1 | set http_proxy=http://127.0.0.1:7777 |
永久代理:
1 | netsh winhttp import proxy source=ie |
针对性代理,绕过本地请求:
1 | netsh winhttp set proxy proxy-server="http=192.168.17.100:50015" bypass-list="localhost" |
查看代理状态:
1 | netsh winhttp show proxy |
取消代理:
1 | netsh winhttp reset proxy |