如何解决Git连接Github速度不稳定?

解决方法:使用V2代理Git

1、查看V2代理端口

可以看到这里代理端口为10606,http端口为10607

image-20240813195138366

image-20240813195313727

2、配置git代理

查看全局代理

1
git config --global --list

配置全局代理

1
2
git config --global http.proxy '127.0.0.1:10607'
git config --global https.proxy '127.0.0.1:10607'

在连接github的时候打开v2就可以了