问题:
windows环境下,不知道为什么最近gitpush和pull速度很慢,经常连接超时;
解决方案:
搜了一下解决方案,大概记录一下
~/.ssh/config
Host github.com *.github.com *.codeup.aliyun.com
User git
# SSH默认端口22,git://, HTTPS默认端口443,https://
Port 22
Hostname %h
# 这里放你的SSH私钥
IdentityFile ~\.ssh\id_rsa
# 设置代理, 127.0.0.1:10808 换成你自己代理软件监听的本地地址
# HTTPS使用-H,SOCKS使用-S
ProxyCommand connect -S 127.0.0.1:10808 %h %p
需要用到connect客户端
connect
解压exe文件后放到C:\Windows\System32目录下面