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 config -l
打印所有全局和本地配置,以确保没有更多代理设置处于活动状态(可能是本地,因为您在 --global
上传递了
unset
)。 (如果您打算将输出放在这里,请记住编辑个人或机密值)
也许是愚蠢的建议,但仍然
确保您的全局 Git 配置中没有代理设置。
git config --global --unset http.proxy
git config --global --unset https.proxy
如果您位于 Git 存储库中,请务必检查本地配置。
git config --unset http.proxy
git config --unset https.proxy
尝试在不使用任何代理设置的情况下克隆存储库。
git clone https://github.com/aramali0/restaurant-management-system.git