Quantcast
Channel: While I remember
Viewing all articles
Browse latest Browse all 11

Using git over proxy

$
0
0
I was trying to clone Android repository at office when this problem of “Connection refused” started coming when running the ‘repo’ tool. On subsequent googling, I got this really useful link (thanks to Emil Sit) which explained how git can be used over http proxy for those git servers which don’t allow http method as an alternate/bypass to git protocol (As it looks is the case with Android git repository).

Ok, in short, here is what I have done;
  • Typed in the below lines (quoted) into a shell script called gitproxy and put it in $(HOME)/bin directory. Of course, its executable bits has to be set with chmod a+x $(HOME)/bin/gitproxy. My $(HOME)/bin directory is already part of PATH so that I can access my custom scripts easily.
    #!/bin/sh
    # Use socat to proxy git through an HTTP CONNECT firewall.
    # Useful if you are trying to clone git:// from inside a company.
    # Requires that the proxy allows CONNECT to port 9418.
    #
    # Save this file as gitproxy somewhere in your path
    # (e.g., ~/bin) and then run
    # chmod +x gitproxy
    # git config --global core.gitproxy gitproxy
    #
    # More details at http://tinyurl.com/8xvpny;
    # Configuration. Common proxy ports are 3128, 8123, 8000.
    _proxy=yourproxyhost
    _proxyport=yourproxyport
    exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
    Note: I replaced proxy.yourcompany.com with appropriate proxy-server details for my organization and the value for _proxyport with an appropriate value used in my organization (instead of 3128).
  • Installed the package socat with the command; sudo apt-get install socat
  • Ran the command git config --global core.gitproxy gitproxy to configure ‘git’ to use the gitproxy.
  • With the http_proxy environment variable already set using preferences menu in GNOME desktop, I could now able to run git and get the repositories without the annoying “Connection refused” problem.

Viewing all articles
Browse latest Browse all 11

Trending Articles