Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] egit.eclipse.org now running smart HTTP

2010/1/19 Shawn O. Pearce <spearce@xxxxxxxxxxx>
Matthias Sohn <matthias.sohn@xxxxxxxxxxxxxx> wrote:
>        $ git clone http://egit.eclipse.org/r/p/jgit
>        error: the requested URL returned error: 403 while accessing
> http://egit.eclipse.org/r/p/jgit/info/refs

Odd, this just worked for me:
 Initialized empty Git repository in /Users/sop/tmp/jgit/.git/
 remote: Counting objects: 2175, done
 remote: Compressing objects: 100% (2175/2175)
 Receiving objects:  52% (1131/2175), 131.41 KiB | 19 KiB/s

Can you retry with the enviroment variable GIT_CURL_VERBOSE=1 ?

behind firewall using proxy :

d029788@WDFN00200862A /c/tmp
$ git clone http://egit.eclipse.org/r/p/jgit
Initialized empty Git repository in c:/tmp/jgit/.git/
* Couldn't find host egit.eclipse.org in the _netrc file; using defaults
* About to connect() to proxy proxy port 8080 (#0)
*   Trying 147.204.6.18... * Connected to proxy (147.204.6.18) port 8080 (#0)
> GET http://egit.eclipse.org/r/p/jgit/info/refs HTTP/1.1
User-Agent: git/1.6.5.1.1366.g8ed9
Host: egit.eclipse.org
Accept: */*
Proxy-Connection: Keep-Alive
Pragma: no-cache

* The requested URL returned error: 403
* Closing connection #0
error: The requested URL returned error: 403 while accessing http://egit.eclipse.org/r/p/jgit/info/refs

fatal: HTTP request failed

------------------------------------------------------------------

same command with direct internet connection :

d029788@WDFN00200862A /c/tmp
$ unset http_proxy

d029788@WDFN00200862A /c/tmp
$ git clone http://egit.eclipse.org/r/p/jgit
Initialized empty Git repository in c:/tmp/jgit/.git/
* Couldn't find host egit.eclipse.org in the _netrc file; using defaults
* About to connect() to egit.eclipse.org port 80 (#0)
*   Trying 209.217.126.118... * Connected to egit.eclipse.org (209.217.126.118) port 80 (#0)
> GET /r/p/jgit/info/refs HTTP/1.1
User-Agent: git/1.6.5.1.1366.g8ed9
Host: egit.eclipse.org
Accept: */*
Pragma: no-cache

* The requested URL returned error: 403
* Closing connection #0
error: The requested URL returned error: 403 while accessing http://egit.eclipse.org/r/p/jgit/info/refs

fatal: HTTP request failed

--
Matthias

Back to the top