安装配置git
安装git并设置代理
安装 git
apt -y install git
配置代理
vi ~/.ssh/config
增加以下内容:
Host github.com
HostName github.com
User git
# http proxy
#ProxyCommand socat - PROXY:192.168.0.1:%h:%p,proxyport=7890
# socks5 proxy
ProxyCommand nc -v -x 192.168.0.1:7891 %h %p