Git 克隆错误“连接后来自代理的 HTTP 代码 405”
Git clone error “HTTP code 405 from proxy after CONNECT”
我在公司防火墙后面的办公室工作。我的系统是 Windows 10 Pro,我使用 Git Bash:
设置了代理配置
$ git config --global http.proxy http://corporateproxy.example.com:8080
$ git config --global https.proxy http://corporateproxy.example.com:8080
之后 .gitconfig
文件如下所示:
[user]
name = myname
[http]
http://corporateproxy.example.com:8080
[https]
http://corporateproxy.example.com:8080
我正在尝试使用 Git Bash 克隆存储库,如下所示:
$ git clone https://github.com/xxxxxx/xxxx.git
但这会引发以下错误:
Cloning into 'xxxxxx'...
fatal: unable to access 'https://github.com/xxxxxx/xxxx.git/': Received HTTP code 405 from proxy after CONNECT
我已尝试在 Git 和控制台中取消设置并重新设置代理配置,但仍然出现相同的错误。
如有任何帮助,我们将不胜感激。
此致。
405 表示 Method Not Allowed 错误
检查您的代理设置、端口,或者您可以尝试使用这样的 ssh 方法
ssh://git@xxxxx.xxx:7999/apps/xxxx.git
我在公司防火墙后面的办公室工作。我的系统是 Windows 10 Pro,我使用 Git Bash:
设置了代理配置$ git config --global http.proxy http://corporateproxy.example.com:8080
$ git config --global https.proxy http://corporateproxy.example.com:8080
之后 .gitconfig
文件如下所示:
[user]
name = myname
[http]
http://corporateproxy.example.com:8080
[https]
http://corporateproxy.example.com:8080
我正在尝试使用 Git Bash 克隆存储库,如下所示:
$ git clone https://github.com/xxxxxx/xxxx.git
但这会引发以下错误:
Cloning into 'xxxxxx'...
fatal: unable to access 'https://github.com/xxxxxx/xxxx.git/': Received HTTP code 405 from proxy after CONNECT
我已尝试在 Git 和控制台中取消设置并重新设置代理配置,但仍然出现相同的错误。
如有任何帮助,我们将不胜感激。
此致。
405 表示 Method Not Allowed 错误
检查您的代理设置、端口,或者您可以尝试使用这样的 ssh 方法
ssh://git@xxxxx.xxx:7999/apps/xxxx.git