문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top