转载自:macOS 给 Git(Github) 设置代理(HTTP/SSH)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| Host * ServerAliveInterval 120 ServerAliveCountMax 5
# 0x00 克隆 repo 的两种方式:https 和 ssh 方式 # https 方式:git clone https: # ssh 方式:git clone git@github.com:owner/git.git
# 0x01 https 方式克隆的 repo,走 http 或 sock5 代理,任选一个 # 0x0101 http 代理 # git config --global http.proxy "http://127.0.0.1:1087" # git config --global https.proxy "http://127.0.0.1:1087" # 0x0102 sock5 代理 # git config --global http.proxy "socks5://127.0.0.1:1086" # git config --global https.proxy "socks5://127.0.0.1:1086" # 0x0103 取消使用代理 # git config --global --unset http.proxy # git config --global --unset https.proxy
# 0x02 ssh 克隆方式的代理设置,直接在全局设置文件配置,即 ~/.ssh/config 文件
这里的nc为netcat,debian需要安装netcat-openbsd Mac下的netcat版本太低,需要安装nmap,brew install nmap
Host github.com HostName github.com User git # 走 HTTP 代理,需要 brew install socat # ProxyCommand socat - PROXY:127.0.0.1:%h:%p,proxyport=1087 # 走 socks5 代理(如 Shadowsocks) ProxyCommand nc -v -x 127.0.0.1:1086 %h %p # 走 socks5 代理(如 Shadowsocks),Windows 平台没有 nc 命令 # ProxyCommand connect -S 127.0.0.1:1086 %h %p
|