我正在尝试禁用Windows上 Git Bash 的代理进行克隆,尝试了以下命令,但仍然没有工作。
EXT:frontend/Classes/Page/PageGenerator.php:PageGenerator::generateMetaTagHtml
我也尝试过以管理员身份运行bash提示符,但仍然没有成功。 在完成所有这些 git config --list 之后,仍然令人沮丧地打印:
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset core.gitproxy
set http_proxy=
set HTTP_PROXY=
set https_proxy=
set HTTPS_PROXY=
# And above without "set"...
# Open .gitconfig, add:
[http]
proxy =
[https]
proxy =
当然,“域”实际上是不同的,因为它是私有的而被隐藏。
Git版本:
http.proxy=http://<domain>
http.sslverify=true
http.http://*<domain>/.proxy=
http.https://*<domain>/.proxy=
http.http://*.*<domain>/.proxy=
http.https://*.*<domain>/.proxy=
http.http://*.*.*<domain>/.proxy=
http.https://*.*.*.<domain>/.proxy=
同时,我会尝试安装另一个版本,因为我怀疑这是一个git bug。
答案 0 :(得分:0)
我已经安装了2.20版,现在我可以完成上述所有操作,但是列表仍然显示那里的代理。
但是克隆存储库是可行的。奇怪:)