D:\git>git fetch origin fatal: unable to access 'http://192.168.1.121/automation/ci_background.git/': Failed to connect to 192.168.1.121 port 80 after 21049 ms: Couldn't connect to server
时间: 2024-04-21 12:30:20 浏览: 200
解决git:fatal:Unable to create”…/.git/index.lock” 的错误
这个错误提示表示 Git 无法连接到远程仓库地址。请检查一下你的网络连接是否正常,以及远程仓库地址是否正确。如果你使用的是 HTTP 协议,那么请确认远程仓库地址中的端口号和协议是否正确。
此外,如果你正在使用防火墙或者代理服务器,可能会导致 Git 无法连接到远程仓库。你可以尝试暂时禁用防火墙或者代理服务器,并重新执行 `git fetch origin` 命令。如果问题得到解决,那么可能需要配置防火墙或者代理服务器以允许 Git 连接到远程仓库。
阅读全文