How to make git use a socks proxy for HTTP transport?
I succeed in configuring git with GIT_PROXY_COMMAND to use a socks proxy for GIT transport.
Also, I hav
SOCKS5 protocol using ssh:ssh -ND 9994 user@YourSshServerproxychains on your localhost, not the ssh server you're connected to:apt-get:sudo apt-get install proxychainsproxychains configure file:sudo nano /etc/proxychains.conf then add the following line at the end of file:socks5 127.0.0.1 9994git command (proxychains must be placed before the command):proxychains git push origin develop