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@YourSshServer
proxychains
on your localhost, not the ssh server you're connected to:apt-get
:sudo apt-get install proxychains
proxychains
configure file:sudo nano /etc/proxychains.conf
then add the following line at the end of file:socks5 127.0.0.1 9994
git
command (proxychains
must be placed before the command):proxychains git push origin develop