* 2.6.15-rc2 tag
@ 2005-11-21 21:25 J. Bruce Fields
2005-11-22 19:34 ` J. Bruce Fields
0 siblings, 1 reply; 6+ messages in thread
From: J. Bruce Fields @ 2005-11-21 21:25 UTC (permalink / raw)
To: git
Help! I'm confused.
git-fetch --tags http://kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
isn't getting me a 2.6.15-rc2 tag. So maybe there's some delay? There
does, however, appear to be a file
http://kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/tags/v2.6.15-rc2
Its contents are 7305b5cb045e2c71250b5b7472771ed2620bc514 which isn't
anything I can find anywhere.
gitweb, on the other hand:
http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=tag;h=7305b5cb045e2c71250b5b7472771ed2620bc514
shows 3bedff1d73b86e0cf52634efb447e9ada08f2cc6 as the tagged commit,
which is something I do have. What don't I understand?
--b.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-rc2 tag
2005-11-21 21:25 2.6.15-rc2 tag J. Bruce Fields
@ 2005-11-22 19:34 ` J. Bruce Fields
2005-11-22 20:01 ` Linus Torvalds
0 siblings, 1 reply; 6+ messages in thread
From: J. Bruce Fields @ 2005-11-22 19:34 UTC (permalink / raw)
To: git
I'm still not getting a 2.6.15-rc2 tag with either git-clone or
git-fetch --tags. Any ideas? Is the problem with me or with the
repository?
--b.
On Mon, Nov 21, 2005 at 04:25:49PM -0500, J. Bruce Fields wrote:
> Help! I'm confused.
>
> git-fetch --tags http://kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
>
> isn't getting me a 2.6.15-rc2 tag. So maybe there's some delay? There
> does, however, appear to be a file
>
> http://kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/tags/v2.6.15-rc2
>
> Its contents are 7305b5cb045e2c71250b5b7472771ed2620bc514 which isn't
> anything I can find anywhere.
>
> gitweb, on the other hand:
>
> http://www.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=tag;h=7305b5cb045e2c71250b5b7472771ed2620bc514
>
> shows 3bedff1d73b86e0cf52634efb447e9ada08f2cc6 as the tagged commit,
> which is something I do have. What don't I understand?
>
> --b.
> -
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-rc2 tag
2005-11-22 19:34 ` J. Bruce Fields
@ 2005-11-22 20:01 ` Linus Torvalds
2005-11-22 20:17 ` J. Bruce Fields
2005-11-22 20:33 ` Junio C Hamano
0 siblings, 2 replies; 6+ messages in thread
From: Linus Torvalds @ 2005-11-22 20:01 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: git
On Tue, 22 Nov 2005, J. Bruce Fields wrote:
>
> I'm still not getting a 2.6.15-rc2 tag with either git-clone or
> git-fetch --tags. Any ideas? Is the problem with me or with the
> repository?
Try using
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
instead. Does that help?
I don't understand how http:// works (or doesn't), so..
Linus
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-rc2 tag
2005-11-22 20:01 ` Linus Torvalds
@ 2005-11-22 20:17 ` J. Bruce Fields
2005-11-22 20:38 ` Jeff Garzik
2005-11-22 20:33 ` Junio C Hamano
1 sibling, 1 reply; 6+ messages in thread
From: J. Bruce Fields @ 2005-11-22 20:17 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
On Tue, Nov 22, 2005 at 12:01:08PM -0800, Linus Torvalds wrote:
> On Tue, 22 Nov 2005, J. Bruce Fields wrote:
> >
> > I'm still not getting a 2.6.15-rc2 tag with either git-clone or
> > git-fetch --tags. Any ideas? Is the problem with me or with the
> > repository?
>
> Try using
>
> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
>
> instead. Does that help?
Yup, thanks. Is there any reason to ever use http to get to your
repository?
> I don't understand how http:// works (or doesn't), so..
>From a quick look in ethereal, it seems to be fetching
http://kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git/info/refs
which has a list of tags that doesn't include 2.6.15-rc2. What
generates that file? Is it broken?
--b.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-rc2 tag
2005-11-22 20:17 ` J. Bruce Fields
@ 2005-11-22 20:38 ` Jeff Garzik
0 siblings, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2005-11-22 20:38 UTC (permalink / raw)
To: J. Bruce Fields; +Cc: Linus Torvalds, git
On Tue, Nov 22, 2005 at 03:17:26PM -0500, J. Bruce Fields wrote:
> Yup, thanks. Is there any reason to ever use http to get to your
> repository?
Linus's? For you? Probably not. But for others:
1) Corporate firewalls, which only allow HTTP transit, without
jumping through hoops.
2) Far easier to find HTTP hosting than rsync or git hosting.
Jeff
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.15-rc2 tag
2005-11-22 20:01 ` Linus Torvalds
2005-11-22 20:17 ` J. Bruce Fields
@ 2005-11-22 20:33 ` Junio C Hamano
1 sibling, 0 replies; 6+ messages in thread
From: Junio C Hamano @ 2005-11-22 20:33 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
Linus Torvalds <torvalds@osdl.org> writes:
> On Tue, 22 Nov 2005, J. Bruce Fields wrote:
>>
>> I'm still not getting a 2.6.15-rc2 tag with either git-clone or
>> git-fetch --tags. Any ideas? Is the problem with me or with the
>> repository?
>
> Try using
>
> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
>
> instead. Does that help?
It should. And I think git:// should be encouraged over
http://, but some people (including me at work) can only come
from http://, so...
> I don't understand how http:// works (or doesn't), so..
The difference between git-ls-remote against your repository via
git:// and http:// would tell you. Your info/refs in your repo
is stale; git http transport is designed to cope with webservers
without dirindex, and only uses info/refs to find out what refs
you have in that repository. It does not fall back on "wget -r"
behaviour simply because it is a mess (you get all sorts of
useless links by doing dirindex in refs/ directory, like Name,
Last modified, Size, Parent Directory).
Mind enabling hooks/post-update on the master so that
update-server-info is run after you push into it?
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2005-11-22 20:39 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-21 21:25 2.6.15-rc2 tag J. Bruce Fields
2005-11-22 19:34 ` J. Bruce Fields
2005-11-22 20:01 ` Linus Torvalds
2005-11-22 20:17 ` J. Bruce Fields
2005-11-22 20:38 ` Jeff Garzik
2005-11-22 20:33 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).