一.git clone 超时
连接 vpn,网页上可以直接打开网站,但是使用 terminal 执行 git clone,提示 Timed out ,如下所示:
e:\work>git clone https://chromium.googlesource.com/chromium/tools/depot_tools
Cloning into 'depot_tools'...
fatal: unable to access 'https://chromium.googlesource.com/chromium/tools/depot_tools/': Failed to connect to chromium.googlesource.com port 443 after 21081 ms: Timed out
二.git clone 超时解决办法
使用 git clone 提示 Timed out ,可以通过设置 http.proxy 完成,如下:
git config —global http.proxy socks5://127.0.0.1:xxxxx
git config —global https.proxy socks5://127.0.0.1:xxxxx
xxxxx 是端口号,根据不同的 vpn 不一样,我这里使用的是 lartern ,端口是50321
e:\work>git config --global http.proxy "localhost:50321"
e:\work>git clone https://chromium.googlesource.com/chromium/tools/depot_tools
Cloning into 'depot_tools'...
remote: Total 50638 (delta 34045), reused 50638 (delta 34045)
Receiving objects: 100% (50638/50638), 44.89 MiB | 7.21 MiB/s, done.
Resolving deltas: 100% (34045/34045), done.
三.git 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
ChatGPT 3.5 国内中文镜像站免费使用啦
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容