Search code examples
androidgitopencvgoogle-codepanorama-control

How to download a source code of code.google.com


I am stuck with downloading project code for an android application on code.google.com. https://code.google.com/p/android-opencv-panorama/ My college have proxy settings issues while trying to download via terminal using Git. Could somebody provide a link or way to do so.


Solution

  • I would say to try at least:

    set HTTPS_PROXY=http://<login_internet>:<password_internet>@aproxy:aport
    set HTTP_PROXY=http://<login_internet>:<password_internet>@aproxy:aport
    

    Or, for bash session:

     export http_proxy=http://<login_internet>:<password_internet>@aproxy:aport
     export https_proxy=http://<login_internet>:<password_internet>@aproxy:aport
    

    Then, for git commands:

    git config --global http.proxy http://<login_internet>:<password_internet>@aproxy:aport
    

    Now the git clone should work:

    git clone https://code.google.com/p/android-opencv-panorama/
    

    The OP mohit reports that Egit works: it can indeed detect the default proxy settings.