github 可以F/Q代理打开,终端无法git pull 代码。
创建SSH代理配置文件:
在您的用户目录下,创建或编辑~/.ssh/config文件。如果该文件不存在,您可以使用文本编辑器创建它。
添加SSH代理设置:
在~/.ssh/config文件中,添加以下内容:
Host github.com
HostName github.com
User git
ProxyCommand nc -v -x 127.0.0.1:1080 %h %p
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
这将为HTTP和HTTPS协议设置SOCKS5代/理。请确保将127.0.0.1:1080替换为您实际的代/理/服/务/器地址和端口。
git config http.proxy 'socks5://127.0.0.1:1080'
git config https.proxy 'socks5://127.0.0.1:1080'
[http "https://github.com"]
proxy = socks5://127.0.0.1:1080
[https "https://github.com"]
proxy = socks5://127.0.0.1:1080