David Gerard wrote: > How can I get wine from git through a proxy server? > > I tried the usual clone command but substituting http:// for git://, > set $http_proxy (per git man page) to the name of my proxy server It works here OK. The only thing to note is that it doesn't work with: http_proxy=http://host:port git clone http://source.winehq.org/git/wine.git wine It only works with: export http_proxy=http://host:port git clone http://source.winehq.org/git/wine.git wine