环境配置
GitHub使用代理
新建文件 ~/.ssh/config
,内容如下:
Host github.com
User git
Port 443
Hostname ssh.github.com
IdentityFile "C:\Users\straicat\.ssh\id_rsa"
TCPKeepAlive yes
ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S 127.0.0.1:7890 -a none %h %p
用户名和connect.exe
的路径根据实际情况修改即可。