2

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.

mohit
  • 413
  • 2
  • 7
  • 19

1 Answers1

1

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.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250