Git Note4:Git提交走VPN

Git Note4:Git提交走VPN

 
配置socks5代理
git config --global http.proxy socks5 127.0.0.1:10808 git config --global https.proxy socks5 127.0.0.1:10808
配置http代理
git config --global http.proxy 127.0.0.1:10809 git config --global https.proxy 127.0.0.1:10809
注意:
命令中的主机号(127.0.0.1)是使用的代理的主机号(自己电脑有vpn那么本机可看做访问github的代理主机),即填入127.0.0.1即可,否则填入代理主机 ip(就是网上找的那个ip)
命令中的端口号(10808)为代理软件(代理软件不显示端口的话,就去Windows中的代理服务器设置中查看)或代理主机的监听IP,可以从代理服务器配置中获得,否则填入网上找的那个端口port
notion image
 
 
 

提示报错

  • cannot overwrite multiple values with a single value
notion image
解决
git config --global --replace-all http.proxy 127.0.0.1:10809 git config --global --replace-all https.proxy 127.0.0.1:10809
查看是否配置成功
git config --list

报错

  • TLS certificate verification has been disabled!
  • 查看https://aka.ms/gcmcore-tlsverify后,发现应该是缺少了安全认证,所以解决方法是重启安全认证。
解决
git config --global http.sslVerify true

取消

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