git clone 使用代理
一次性代理
git clone -c http.proxy="http://127.0.0.1:7890" https://github.com/
全局设置代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:7890
git clone -c http.proxy="http://127.0.0.1:7890" https://github.com/
git config --global http.https://github.com.proxy socks5://127.0.0.1:7890