* Someone please turn on the http protocol on git.kernel.org!
@ 2007-03-01 19:14 Timur Tabi
2007-03-01 19:20 ` Timur Tabi
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Timur Tabi @ 2007-03-01 19:14 UTC (permalink / raw)
To: linux-kernel
I see we now have a dedicate machine for the git server. That's great. How about turning
on the http protocol so that those of use behind a firewall can clone trees?
I get this:
$ git-clone http://git.kernel.org/pub/scm/git.git
Initialized empty Git repository in /temp/git/.git/
Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?
I'm using git 1.5.0.2. I have the same problem with git 1.4.4.
When I use my web browser to view http://git.kernel.org/pub/scm/git.git, I get an error 404.
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-01 19:14 Someone please turn on the http protocol on git.kernel.org! Timur Tabi @ 2007-03-01 19:20 ` Timur Tabi 2007-03-01 21:47 ` Kyle McMartin 2007-03-01 23:01 ` H. Peter Anvin 2 siblings, 0 replies; 12+ messages in thread From: Timur Tabi @ 2007-03-01 19:20 UTC (permalink / raw) To: linux-kernel Timur Tabi wrote: > $ git-clone http://git.kernel.org/pub/scm/git.git Actually, I meant http://git.kernel.org/pub/scm/git/git.git, but the problem still exists. -- Timur Tabi Linux Kernel Developer @ Freescale ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-01 19:14 Someone please turn on the http protocol on git.kernel.org! Timur Tabi 2007-03-01 19:20 ` Timur Tabi @ 2007-03-01 21:47 ` Kyle McMartin 2007-03-01 21:51 ` Timur Tabi 2007-03-01 23:01 ` H. Peter Anvin 2 siblings, 1 reply; 12+ messages in thread From: Kyle McMartin @ 2007-03-01 21:47 UTC (permalink / raw) To: Timur Tabi; +Cc: linux-kernel On Thu, Mar 01, 2007 at 01:14:23PM -0600, Timur Tabi wrote: > git-clone \ http://ftp.kernel.org/pub/scm/linux/kernel/git/$user/$tree Works fine. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-01 21:47 ` Kyle McMartin @ 2007-03-01 21:51 ` Timur Tabi 0 siblings, 0 replies; 12+ messages in thread From: Timur Tabi @ 2007-03-01 21:51 UTC (permalink / raw) To: Kyle McMartin; +Cc: linux-kernel Kyle McMartin wrote: > git-clone \ > http://ftp.kernel.org/pub/scm/linux/kernel/git/$user/$tree > > Works fine. Thanks! That works. git.kernel.org is still down, but this will do in the meantime. -- Timur Tabi Linux Kernel Developer @ Freescale ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-01 19:14 Someone please turn on the http protocol on git.kernel.org! Timur Tabi 2007-03-01 19:20 ` Timur Tabi 2007-03-01 21:47 ` Kyle McMartin @ 2007-03-01 23:01 ` H. Peter Anvin 2 siblings, 0 replies; 12+ messages in thread From: H. Peter Anvin @ 2007-03-01 23:01 UTC (permalink / raw) To: Timur Tabi; +Cc: linux-kernel Timur Tabi wrote: > I see we now have a dedicate machine for the git server. That's great. > How about turning on the http protocol so that those of use behind a > firewall can clone trees? > I get this: > > $ git-clone http://git.kernel.org/pub/scm/git.git > Initialized empty Git repository in /temp/git/.git/ > Cannot get remote repository information. > Perhaps git-update-server-info needs to be run there? Don't use the git server for that, please. Use http://www.kernel.org/pub/scm/... instead. -hpa ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <7TYYU-5L8-11@gated-at.bofh.it>]
[parent not found: <7U2zx-392-13@gated-at.bofh.it>]
* Re: Someone please turn on the http protocol on git.kernel.org! [not found] ` <7U2zx-392-13@gated-at.bofh.it> @ 2007-03-02 13:09 ` Mike Accetta 2007-03-02 22:30 ` Timur Tabi ` (2 more replies) 0 siblings, 3 replies; 12+ messages in thread From: Mike Accetta @ 2007-03-02 13:09 UTC (permalink / raw) To: linux-kernel H. Peter Anvin wrote: > Timur Tabi wrote: >> I see we now have a dedicate machine for the git server. That's >> great. How about turning on the http protocol so that those of use >> behind a firewall can clone trees? > >> I get this: >> >> $ git-clone http://git.kernel.org/pub/scm/git.git >> Initialized empty Git repository in /temp/git/.git/ >> Cannot get remote repository information. >> Perhaps git-update-server-info needs to be run there? > > Don't use the git server for that, please. Use > http://www.kernel.org/pub/scm/... instead. Another unfortunate stuck behind a firewall here. When I try this it chugs along for a while seeming to work but eventually aborts: % git clone http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linus ... walk 0964ce24d091a1d3dc7f667e1b107ab77d4325e6 walk c264852726dde251a0c09ec22f61a9be8b0db68b walk 69903d6500c73af8329a5fba7153b0d50748981c walk b59a9504cb93db7fae31e60760725d48652a1fc3 error: Couldn't get http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/refs/tags/v2.6.11 for tags/v2.6.11 The requested URL returned error: 404 error: Could not interpret tags/v2.6.11 as something to pull -- Mike Accetta ECI Telecom Ltd. Data Networking Division (previously Laurel Networks) ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-02 13:09 ` Mike Accetta @ 2007-03-02 22:30 ` Timur Tabi 2007-03-02 22:39 ` Steve Wise 2007-03-02 22:43 ` Keith Duthie 2007-03-02 23:10 ` Keith Duthie 2007-03-04 9:21 ` Geert Uytterhoeven 2 siblings, 2 replies; 12+ messages in thread From: Timur Tabi @ 2007-03-02 22:30 UTC (permalink / raw) To: Mike Accetta; +Cc: linux-kernel Mike Accetta wrote: > error: Couldn't get > http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/refs/tags/v2.6.11 > for tags/v2.6.11 > The requested URL returned error: 404 > error: Could not interpret tags/v2.6.11 as something to pull I just tried it and got the same error, so it looks like something is wrong on the server. Isn't 2.6.11 around the time that Linus moved to git? Maybe the server can't find tag for the initial check-in of the code. -- Timur Tabi Linux Kernel Developer @ Freescale ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-02 22:30 ` Timur Tabi @ 2007-03-02 22:39 ` Steve Wise 2007-03-02 23:29 ` Timur Tabi 2007-03-02 22:43 ` Keith Duthie 1 sibling, 1 reply; 12+ messages in thread From: Steve Wise @ 2007-03-02 22:39 UTC (permalink / raw) To: Timur Tabi; +Cc: Mike Accetta, linux-kernel On Fri, 2007-03-02 at 16:30 -0600, Timur Tabi wrote: > Mike Accetta wrote: > > > error: Couldn't get > > http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/refs/tags/v2.6.11 > > for tags/v2.6.11 > > The requested URL returned error: 404 > > error: Could not interpret tags/v2.6.11 as something to pull > > I just tried it and got the same error, so it looks like something is wrong on the server. > > Isn't 2.6.11 around the time that Linus moved to git? Maybe the server can't find tag for > the initial check-in of the code. > Aren't the older commits in another git tree? Like maybe git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/old-2.6-bkcvs.git Steve. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-02 22:39 ` Steve Wise @ 2007-03-02 23:29 ` Timur Tabi 0 siblings, 0 replies; 12+ messages in thread From: Timur Tabi @ 2007-03-02 23:29 UTC (permalink / raw) To: Steve Wise; +Cc: Mike Accetta, linux-kernel Steve Wise wrote: > Aren't the older commits in another git tree? Like maybe > > git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/old-2.6-bkcvs.git git-clone http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/old-2.6-bkcvs.git works for me, so that can't be it. -- Timur Tabi Linux Kernel Developer @ Freescale ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-02 22:30 ` Timur Tabi 2007-03-02 22:39 ` Steve Wise @ 2007-03-02 22:43 ` Keith Duthie 1 sibling, 0 replies; 12+ messages in thread From: Keith Duthie @ 2007-03-02 22:43 UTC (permalink / raw) To: Timur Tabi; +Cc: Mike Accetta, linux-kernel On Fri, 2 Mar 2007, Timur Tabi wrote: > Isn't 2.6.11 around the time that Linus moved to git? Maybe the server can't > find tag for the initial check-in of the code. v2.6.12-rc2, in fact. If you want to look at v2.6.11 in git you'll need to look at the bkcvs tree. -- The universe hates you, but don't worry - it's nothing personal. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-02 13:09 ` Mike Accetta 2007-03-02 22:30 ` Timur Tabi @ 2007-03-02 23:10 ` Keith Duthie 2007-03-04 9:21 ` Geert Uytterhoeven 2 siblings, 0 replies; 12+ messages in thread From: Keith Duthie @ 2007-03-02 23:10 UTC (permalink / raw) To: Mike Accetta; +Cc: linux-kernel On Fri, 2 Mar 2007, Mike Accetta wrote: > error: Couldn't get > http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/refs/tags/v2.6.11 > for tags/v2.6.11 > The requested URL returned error: 404 > error: Could not interpret tags/v2.6.11 as something to pull This would be because the tag v2.6.11 points to a nonexistant object in the repository. -- The universe hates you, but don't worry - it's nothing personal. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: Someone please turn on the http protocol on git.kernel.org! 2007-03-02 13:09 ` Mike Accetta 2007-03-02 22:30 ` Timur Tabi 2007-03-02 23:10 ` Keith Duthie @ 2007-03-04 9:21 ` Geert Uytterhoeven 2 siblings, 0 replies; 12+ messages in thread From: Geert Uytterhoeven @ 2007-03-04 9:21 UTC (permalink / raw) To: Mike Accetta; +Cc: linux-kernel On Fri, 2 Mar 2007, Mike Accetta wrote: > H. Peter Anvin wrote: > > Timur Tabi wrote: > > > I see we now have a dedicate machine for the git server. That's great. > > > How about turning on the http protocol so that those of use behind a > > > firewall can clone trees? > > > > > I get this: > > > > > > $ git-clone http://git.kernel.org/pub/scm/git.git > > > Initialized empty Git repository in /temp/git/.git/ > > > Cannot get remote repository information. > > > Perhaps git-update-server-info needs to be run there? > > > > Don't use the git server for that, please. Use > > http://www.kernel.org/pub/scm/... instead. > > Another unfortunate stuck behind a firewall here. When I try this it chugs > along for a while seeming to work but eventually aborts: > > % git clone > http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linus > ... > walk 0964ce24d091a1d3dc7f667e1b107ab77d4325e6 > walk c264852726dde251a0c09ec22f61a9be8b0db68b > walk 69903d6500c73af8329a5fba7153b0d50748981c > walk b59a9504cb93db7fae31e60760725d48652a1fc3 > error: Couldn't get > http://www.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/refs/tags/v2.6.11 > for tags/v2.6.11 > The requested URL returned error: 404 > error: Could not interpret tags/v2.6.11 as something to pull I see these from time to time too, when pulling through http. Using the `other' www.kernel.org (try www1.kernel.org vs. www2.kernel.org) usually fixes the problem. I guess the mirroring is not perfect. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- Sony Network and Software Technology Center Europe (NSCE) Geert.Uytterhoeven@sonycom.com ------- The Corporate Village, Da Vincilaan 7-D1 Voice +32-2-7008453 Fax +32-2-7008622 ---------------- B-1935 Zaventem, Belgium ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2007-03-04 9:22 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-01 19:14 Someone please turn on the http protocol on git.kernel.org! Timur Tabi
2007-03-01 19:20 ` Timur Tabi
2007-03-01 21:47 ` Kyle McMartin
2007-03-01 21:51 ` Timur Tabi
2007-03-01 23:01 ` H. Peter Anvin
[not found] <7TYYU-5L8-11@gated-at.bofh.it>
[not found] ` <7U2zx-392-13@gated-at.bofh.it>
2007-03-02 13:09 ` Mike Accetta
2007-03-02 22:30 ` Timur Tabi
2007-03-02 22:39 ` Steve Wise
2007-03-02 23:29 ` Timur Tabi
2007-03-02 22:43 ` Keith Duthie
2007-03-02 23:10 ` Keith Duthie
2007-03-04 9:21 ` Geert Uytterhoeven
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox