gpt4 book ai didi

Git http.proxy 设置

转载 作者:IT王子 更新时间:2023-10-29 01:29:48 29 4
gpt4 key购买 nike

我试图解决这个 git 问题,有一次我弄乱了 http.proxy 变量。现在这只是废话,'asdf' 所以推送不起作用。我不知道之前的代理设置是什么(我什至不知道代理服务器是什么)。有什么方法可以将 http.proxy 设置为正确的值?

现在的错误是:“访问时无法解析代理‘asdf’...致命:HTTP 请求失败。

最佳答案

您错误地向 git 配置文件添加了一个条目。您可以使用 git config 操作全局和每个存储库配置文件。

要查看您是否将代理条目添加到全局或本地配置文件,请从控制台运行此命令:

git config -l --global | grep http  # this will print the line if it is in the global file
git config -l | grep http # this will print the line if it is in the repo config file

然后从全局或本地文件中删除所有 http.proxy 条目运行此:

git config --global --unset-all http.proxy # to remove it from the global config
git config --unset-all http.proxy # to remove it from the local repo config file

希望对您有所帮助。

关于Git http.proxy 设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11499805/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com