git远程拉取/推送报错解决

git远程拉取/推送报错解决

Wed Aug 20 2025
182 words · 1 minutes

git远程拉取/推送代码时报:> git pull —tags origin master fatal: unable to access ‘https://github.com/window-han/astro-new.git/’: Failed to connect to github.com port 443 after 21176 ms: Could not connect to server

问题描述

PLAINTEXT
> git pull --tags origin master fatal:
 unable to access 'https://github.com/window-han/astro-new.git/': Failed to connect to github.com port 443 after 21176 ms: Could not connect to server

原因及解决

如果你开启了VPN,很可能是因为代理的问题,这时候设置一下http.proxy就可以了 一定要查看自己的VPN端口号, 假如你的端口号是7890,在git bash命令行中输入以下命令即可:

C
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

如果你之前git中已经设置过上述配置,则使用如下命令取消再进行配置即可:

C
git config --global --unset http.proxy
git config --global --unset https.proxy

Thanks for reading!

git远程拉取/推送报错解决

Wed Aug 20 2025
182 words · 1 minutes