无法克隆 GitHub 存储库

问题描述 投票:0回答:2

D: setau-management λ git config --global --unset http.proxy

D: 设置管理 λ git clone https://github.com/aramali0/restaurant-management-system.git 克隆 进入“餐厅管理系统”...致命:无法访问 'https://github.com/aramali0/restaurant-management-system.git/': “aproxy:airport”中不支持代理语法:端口号不是 0 到 65535 之间的十进制数

git github vscode-remote
2个回答
0
投票

作为找出问题所在的第一次尝试,您可以使用

git config -l
打印所有全局和本地配置,以确保没有更多代理设置处于活动状态(可能是本地,因为您在
--global 上传递了 
unset
 
)。 (如果您打算将输出放在这里,请记住编辑个人或机密值)


0
投票

也许是愚蠢的建议,但仍然

  1. 检查全局 Git 配置:

确保您的全局 Git 配置中没有代理设置。

git config --global --unset http.proxy

git config --global --unset https.proxy
  1. 检查本地 Git 配置:

如果您位于 Git 存储库中,请务必检查本地配置。

git config --unset http.proxy

git config --unset https.proxy
  1. 无需代理克隆:

尝试在不使用任何代理设置的情况下克隆存储库。

git clone https://github.com/aramali0/restaurant-management-system.git
© www.soinside.com 2019 - 2024. All rights reserved.