August
3rd,
2021
HTTP 代理
git config --global http.proxy 127.0.0.1:1080
git config --global https.proxy 127.0.0.1:1080
SSH 代理
SSH 代理需要在密钥目录~/.ssh
(Windows 下是C:\Users\{UserName}\.ssh
)新建一个config
文件
$ cat ~/.ssh/config
Host github.com
ProxyCommand connect -S 127.0.0.1:1080 %h %p