On Wed, Mar 06, 2013 at 09:12:30AM +0100, Yves Blusseau wrote: > i have a socks proxy to access internet. > I successed in configuring git (with GIT_PROXY_COMMAND) to use the > socks proxy for GIT transport protocol. > But how to use this socks proxy with git for HTTP(S) transport protocol ? Try: git config --global http.proxy 'socks://yourhost:port' That will enable it for all git repositories on your machine. Git should also respect any environment variables that curl handles (because we use libcurl under the hood), if you prefer to set it up that way. See "man curl" for details. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html