代理git协议

代理 git 协议,免询问密码

编辑~/.ssh/config文件,添加如下配置

1
2
Host github.com
ProxyCommand connect -S 127.0.0.1:1080 -a none %h %p

安装netcat

1
sudo apt install -y netcat-openbsd
1
sudo yum install -y netcat-openbsd
1
sudo pacman -Sy --noconfirm openbsd-netcat

编辑~/.ssh/config文件,添加如下配置

1
2
Host github.com
ProxyCommand nc -x 127.0.0.1:1080 %h %p