简单直接的输出干货,复制->粘贴->完活.
Http代理设置
全局
bash
git config --global http.proxy socks5://127.0.0.1:10808
指定github
bash
git config --global http.https://github.com.proxy socks5://127.0.0.1:10808
SSH代理设置
Linux
配置文件在home目录下的 .ssh/config 其中 nc 程序位于 /usr/bin/nc
bash
$ cat ~/.ssh/config
Host github.com
Hostname ssh.github.com
User git
Port 443
ProxyCommand nc -v -x 127.0.0.1:10808 %h %p
Windows
使用Git Bash
bash
$ cat ~/.ssh/config
Host github.com
Hostname ssh.github.com
User git
Port 443
ProxyCommand "C:\Program Files\Git\mingw64\bin\connect.exe" -S 127.0.0.1:10808 %h %p