linux的比较简单,直接修改配置文件即可,这里就不再赘述
export http_proxy=http://127.0.0.1:7777
export https_proxy=http://127.0.0.1:7777
命令方式:
git config --global http.proxy http://127.0.0.1:50015
git config --global https.proxy http://127.0.0.1:50015
修改配置文件方式
进入用户名根路径,找到 .gitconfig 文件,修改(地址和端口换成自己的)为:
[http]
proxy = http://127.0.0.1:50015
[https]
proxy = http://127.0.0.1:50015
git config --get --global http.proxy
git config --get --global https.proxy
命令方式:
git config --global http.proxy socks5://127.0.0.1:50014
git config --global https.proxy socks5://127.0.0.1:50014
修改配置文件方式:
进入用户名根路径,找到 .gitconfig 文件,修改(地址和端口换成自己的)为:
[http]
proxy = socks5://127.0.0.1:50015
[https]
proxy = socks5://127.0.0.1:50015
git config --get --global http.proxy
git config --get --global https.proxy
git config --get --global http.proxy socks5
git config --get --global https.proxy socks5
git config --system (或 --global 或 --local) --unset http.proxy
例:
git config --global --unset http.proxy
git config --global --unset https.proxy
----------------------------------------------------------------------------------------------------------------------------------------
cmd临时代理方案(cmd窗口关闭,则代理失效)
set http_proxy=http://127.0.0.1:50015
set https_proxy=http://127.0.0.1:50015
cmd永久代理方案
netsh winhttp import proxy source=ie
set http_proxy=socks5://127.0.0.1:50014
set https_proxy=socks5://127.0.0.1:50014
http:
netsh winhttp set proxy proxy-server="http=192.168.17.100:50015" bypass-list="localhost"
https:
netsh winhttp set proxy proxy-server="http=192.168.17.100:50015" bypass-list="localhost"
socks:
netsh winhttp set proxy proxy-server="socks=192.168.17.100:50015" bypass-list="localhost"
netsh winhttp show proxy
netsh winhttp reset proxy
原文:https://www.cnblogs.com/yiting/p/11919823.html