git通过内网代理访问外网的相关配置方法
这篇文章主要介绍了git通过内网代理,访问外网的相关配置,配置git代理以http代理为例,给大家具体讲解,需要的朋友可以参考下
git通过内网代理,访问外网的相关配置
1 配置git代理(以http代理为例)
git config --global http.proxy http://<username>:<password>@<proxy.server.com>:<8080> git config --global https.proxy http://<username>:<password>@<proxy.server.com>:<8080>
2 替换git协议为https协议
在有些企业的内网,由于git哀求与ssh访问类似,防火墙会屏蔽git://协议的访问哀求,假如git://无法访问,可尝试更换为https://协议
git config --global url."https://github.com/".insteadOf git@github.com: git config --global url."https://".insteadOf git://
3 取消https协议的证书验证
在有些企业访问外网的代理,会强行把https的证书入行替换,导致https访问时,出现证书错误。假如想跳过证书错误,需要把git全局的证书验证关闭。
git config --global http.sslVerify false
补充:git设置代理
临时设置
打开 Git Bash,使用命令临时设定socks代理:
git config --global http.proxy 'socks5://127.0.0.1:socks5端口号' git config --global https.proxy 'socks5://127.0.0.1:socks5端口号'
或者http代理:
git config --global http.proxy 'http://127.0.0.1:http端口号' git config --global https.proxy 'https://127.0.0.1:https端口号'
永久设置
若想要设置代理永久生效,则可以把它写进 .gitconfig 文件中。
使用 vi 打开 .gitconfig 文件:
vi ~/.gitconfig
写进下列配置(建议在最末写进):
[http] proxy = socks5://127.0.0.1:socks5端口号 proxy = http://127.0.0.1:http端口号 [https] proxy = socks5://127.0.0.1:socks5端口号 proxy = https://127.0.0.1:http端口号
修改后重启 git ,使配置生效:
git config -l --global
查观当前代理:
git config -l
可以观到自己所配置的端口信息,则说明配置成功。
到此这篇关于git通过内网代理,访问外网的相关配置的文章就介绍到这了,更多相关git内网代理访问外网内容请搜索以前的文章或继承浏览下面的相关文章希望大家以后多多支持!
很赞哦!()
大图广告(830*140)