* HTTP url not working
@ 2008-10-06 14:44 Felipe Contreras
2008-10-07 7:02 ` Tony Lindgren
0 siblings, 1 reply; 7+ messages in thread
From: Felipe Contreras @ 2008-10-06 14:44 UTC (permalink / raw)
To: Tony Lindgren, linux-omap@vger.kernel.org List
Hi,
The http url doesn't seem to be working anymore:
http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
Can you?
mv .git/post-update{.sample,}
--
Felipe Contreras
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: HTTP url not working
2008-10-06 14:44 HTTP url not working Felipe Contreras
@ 2008-10-07 7:02 ` Tony Lindgren
2008-10-07 7:27 ` Tony Lindgren
0 siblings, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2008-10-07 7:02 UTC (permalink / raw)
To: Felipe Contreras; +Cc: linux-omap@vger.kernel.org List
* Felipe Contreras <felipe.contreras@gmail.com> [081006 17:44]:
> Hi,
>
> The http url doesn't seem to be working anymore:
> http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>
> Can you?
> mv .git/post-update{.sample,}
Hmm, I just did a git-clone over http, and it worked fine.
Kevin just told me that the new pm branched don't show up over http,
but do appear over git. Trying to debug.
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: HTTP url not working
2008-10-07 7:02 ` Tony Lindgren
@ 2008-10-07 7:27 ` Tony Lindgren
2008-10-07 12:58 ` Felipe Contreras
0 siblings, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2008-10-07 7:27 UTC (permalink / raw)
To: Felipe Contreras; +Cc: linux-omap@vger.kernel.org List
* Tony Lindgren <tony@atomide.com> [081007 09:59]:
> * Felipe Contreras <felipe.contreras@gmail.com> [081006 17:44]:
> > Hi,
> >
> > The http url doesn't seem to be working anymore:
> > http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >
> > Can you?
> > mv .git/post-update{.sample,}
>
> Hmm, I just did a git-clone over http, and it worked fine.
>
> Kevin just told me that the new pm branched don't show up over http,
> but do appear over git. Trying to debug.
Looks like it's some kernel.org mirroring issue with http.
If I edit .git/config to use git protocol:
url = git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
And then pull:
$ rm .git/refs/remotes/origin/pm-*; git-pull -v
>From git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
= [up to date] linus -> origin/linus
a58e707..62c36fd master -> origin/master
= [up to date] omap2-upstream -> origin/omap2-upstream
= [up to date] omap3-upstream -> origin/omap3-upstream
* [new branch] pm-0 -> origin/pm-0
* [new branch] pm-0.5 -> origin/pm-0.5
* [new branch] pm-1 -> origin/pm-1
* [new branch] pm-20081006 -> origin/pm-20081006
Already up-to-date.
It work fine.
But if I edit .git/config to use http protocol:
url = http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
And then pull:
$ rm .git/refs/remotes/origin/pm-*; git-pull -v
>From http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
= [up to date] linus -> origin/linus
+ 62c36fd...a58e707 master -> origin/master (forced update)
* [new branch] pm-0 -> origin/pm-0
* [new branch] pm-1 -> origin/pm-1
Already up-to-date.
It pulls something that's old.
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: HTTP url not working
2008-10-07 7:27 ` Tony Lindgren
@ 2008-10-07 12:58 ` Felipe Contreras
2008-10-07 14:00 ` Tony Lindgren
0 siblings, 1 reply; 7+ messages in thread
From: Felipe Contreras @ 2008-10-07 12:58 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-omap@vger.kernel.org List
On Tue, Oct 7, 2008 at 10:27 AM, Tony Lindgren <tony@atomide.com> wrote:
> * Tony Lindgren <tony@atomide.com> [081007 09:59]:
>> * Felipe Contreras <felipe.contreras@gmail.com> [081006 17:44]:
>> > Hi,
>> >
>> > The http url doesn't seem to be working anymore:
>> > http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>> >
>> > Can you?
>> > mv .git/post-update{.sample,}
>>
>> Hmm, I just did a git-clone over http, and it worked fine.
>>
>> Kevin just told me that the new pm branched don't show up over http,
>> but do appear over git. Trying to debug.
>
> Looks like it's some kernel.org mirroring issue with http.
>
> If I edit .git/config to use git protocol:
>
> url = git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>
> And then pull:
>
> $ rm .git/refs/remotes/origin/pm-*; git-pull -v
> From git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> = [up to date] linus -> origin/linus
> a58e707..62c36fd master -> origin/master
> = [up to date] omap2-upstream -> origin/omap2-upstream
> = [up to date] omap3-upstream -> origin/omap3-upstream
> * [new branch] pm-0 -> origin/pm-0
> * [new branch] pm-0.5 -> origin/pm-0.5
> * [new branch] pm-1 -> origin/pm-1
> * [new branch] pm-20081006 -> origin/pm-20081006
> Already up-to-date.
>
> It work fine.
>
>
> But if I edit .git/config to use http protocol:
>
> url = http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>
> And then pull:
>
> $ rm .git/refs/remotes/origin/pm-*; git-pull -v
> From http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> = [up to date] linus -> origin/linus
> + 62c36fd...a58e707 master -> origin/master (forced update)
> * [new branch] pm-0 -> origin/pm-0
> * [new branch] pm-1 -> origin/pm-1
> Already up-to-date.
>
> It pulls something that's old.
Yes, it seems there was a git version update or something because the
post-update hook is not there anymore.
You can see it here:
http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git/info/refs
The refs are pointing to old commits, and nothing will change until
you run git update-server-info. If you enable the hook that will be
done automatically each time the refs are updated.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: HTTP url not working
2008-10-07 12:58 ` Felipe Contreras
@ 2008-10-07 14:00 ` Tony Lindgren
2008-10-07 15:44 ` Felipe Contreras
0 siblings, 1 reply; 7+ messages in thread
From: Tony Lindgren @ 2008-10-07 14:00 UTC (permalink / raw)
To: Felipe Contreras; +Cc: linux-omap@vger.kernel.org List
* Felipe Contreras <felipe.contreras@gmail.com> [081007 15:58]:
> On Tue, Oct 7, 2008 at 10:27 AM, Tony Lindgren <tony@atomide.com> wrote:
> > * Tony Lindgren <tony@atomide.com> [081007 09:59]:
> >> * Felipe Contreras <felipe.contreras@gmail.com> [081006 17:44]:
> >> > Hi,
> >> >
> >> > The http url doesn't seem to be working anymore:
> >> > http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >> >
> >> > Can you?
> >> > mv .git/post-update{.sample,}
> >>
> >> Hmm, I just did a git-clone over http, and it worked fine.
> >>
> >> Kevin just told me that the new pm branched don't show up over http,
> >> but do appear over git. Trying to debug.
> >
> > Looks like it's some kernel.org mirroring issue with http.
> >
> > If I edit .git/config to use git protocol:
> >
> > url = git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >
> > And then pull:
> >
> > $ rm .git/refs/remotes/origin/pm-*; git-pull -v
> > From git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> > = [up to date] linus -> origin/linus
> > a58e707..62c36fd master -> origin/master
> > = [up to date] omap2-upstream -> origin/omap2-upstream
> > = [up to date] omap3-upstream -> origin/omap3-upstream
> > * [new branch] pm-0 -> origin/pm-0
> > * [new branch] pm-0.5 -> origin/pm-0.5
> > * [new branch] pm-1 -> origin/pm-1
> > * [new branch] pm-20081006 -> origin/pm-20081006
> > Already up-to-date.
> >
> > It work fine.
> >
> >
> > But if I edit .git/config to use http protocol:
> >
> > url = http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >
> > And then pull:
> >
> > $ rm .git/refs/remotes/origin/pm-*; git-pull -v
> > From http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> > = [up to date] linus -> origin/linus
> > + 62c36fd...a58e707 master -> origin/master (forced update)
> > * [new branch] pm-0 -> origin/pm-0
> > * [new branch] pm-1 -> origin/pm-1
> > Already up-to-date.
> >
> > It pulls something that's old.
>
> Yes, it seems there was a git version update or something because the
> post-update hook is not there anymore.
>
> You can see it here:
> http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git/info/refs
>
> The refs are pointing to old commits, and nothing will change until
> you run git update-server-info. If you enable the hook that will be
> done automatically each time the refs are updated.
OK, thanks for the info.
I've renamed post-update.sample into post-update, which
does exec git-update-server-info.
I've also renamed the other *.sample files to enable them.
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: HTTP url not working
2008-10-07 14:00 ` Tony Lindgren
@ 2008-10-07 15:44 ` Felipe Contreras
2008-10-07 16:12 ` Tony Lindgren
0 siblings, 1 reply; 7+ messages in thread
From: Felipe Contreras @ 2008-10-07 15:44 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-omap@vger.kernel.org List
On Tue, Oct 7, 2008 at 5:00 PM, Tony Lindgren <tony@atomide.com> wrote:
> * Felipe Contreras <felipe.contreras@gmail.com> [081007 15:58]:
>> On Tue, Oct 7, 2008 at 10:27 AM, Tony Lindgren <tony@atomide.com> wrote:
>> > * Tony Lindgren <tony@atomide.com> [081007 09:59]:
>> >> * Felipe Contreras <felipe.contreras@gmail.com> [081006 17:44]:
>> >> > Hi,
>> >> >
>> >> > The http url doesn't seem to be working anymore:
>> >> > http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>> >> >
>> >> > Can you?
>> >> > mv .git/post-update{.sample,}
>> >>
>> >> Hmm, I just did a git-clone over http, and it worked fine.
>> >>
>> >> Kevin just told me that the new pm branched don't show up over http,
>> >> but do appear over git. Trying to debug.
>> >
>> > Looks like it's some kernel.org mirroring issue with http.
>> >
>> > If I edit .git/config to use git protocol:
>> >
>> > url = git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>> >
>> > And then pull:
>> >
>> > $ rm .git/refs/remotes/origin/pm-*; git-pull -v
>> > From git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
>> > = [up to date] linus -> origin/linus
>> > a58e707..62c36fd master -> origin/master
>> > = [up to date] omap2-upstream -> origin/omap2-upstream
>> > = [up to date] omap3-upstream -> origin/omap3-upstream
>> > * [new branch] pm-0 -> origin/pm-0
>> > * [new branch] pm-0.5 -> origin/pm-0.5
>> > * [new branch] pm-1 -> origin/pm-1
>> > * [new branch] pm-20081006 -> origin/pm-20081006
>> > Already up-to-date.
>> >
>> > It work fine.
>> >
>> >
>> > But if I edit .git/config to use http protocol:
>> >
>> > url = http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
>> >
>> > And then pull:
>> >
>> > $ rm .git/refs/remotes/origin/pm-*; git-pull -v
>> > From http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
>> > = [up to date] linus -> origin/linus
>> > + 62c36fd...a58e707 master -> origin/master (forced update)
>> > * [new branch] pm-0 -> origin/pm-0
>> > * [new branch] pm-1 -> origin/pm-1
>> > Already up-to-date.
>> >
>> > It pulls something that's old.
>>
>> Yes, it seems there was a git version update or something because the
>> post-update hook is not there anymore.
>>
>> You can see it here:
>> http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git/info/refs
>>
>> The refs are pointing to old commits, and nothing will change until
>> you run git update-server-info. If you enable the hook that will be
>> done automatically each time the refs are updated.
>
> OK, thanks for the info.
>
> I've renamed post-update.sample into post-update, which
> does exec git-update-server-info.
>
> I've also renamed the other *.sample files to enable them.
I don't think that's a good idea... you should check what they do. I
only know the post-update hook is needed for http.
--
Felipe Contreras
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: HTTP url not working
2008-10-07 15:44 ` Felipe Contreras
@ 2008-10-07 16:12 ` Tony Lindgren
0 siblings, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2008-10-07 16:12 UTC (permalink / raw)
To: Felipe Contreras; +Cc: linux-omap@vger.kernel.org List
* Felipe Contreras <felipe.contreras@gmail.com> [081007 18:44]:
> On Tue, Oct 7, 2008 at 5:00 PM, Tony Lindgren <tony@atomide.com> wrote:
> > * Felipe Contreras <felipe.contreras@gmail.com> [081007 15:58]:
> >> On Tue, Oct 7, 2008 at 10:27 AM, Tony Lindgren <tony@atomide.com> wrote:
> >> > * Tony Lindgren <tony@atomide.com> [081007 09:59]:
> >> >> * Felipe Contreras <felipe.contreras@gmail.com> [081006 17:44]:
> >> >> > Hi,
> >> >> >
> >> >> > The http url doesn't seem to be working anymore:
> >> >> > http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >> >> >
> >> >> > Can you?
> >> >> > mv .git/post-update{.sample,}
> >> >>
> >> >> Hmm, I just did a git-clone over http, and it worked fine.
> >> >>
> >> >> Kevin just told me that the new pm branched don't show up over http,
> >> >> but do appear over git. Trying to debug.
> >> >
> >> > Looks like it's some kernel.org mirroring issue with http.
> >> >
> >> > If I edit .git/config to use git protocol:
> >> >
> >> > url = git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >> >
> >> > And then pull:
> >> >
> >> > $ rm .git/refs/remotes/origin/pm-*; git-pull -v
> >> > From git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> >> > = [up to date] linus -> origin/linus
> >> > a58e707..62c36fd master -> origin/master
> >> > = [up to date] omap2-upstream -> origin/omap2-upstream
> >> > = [up to date] omap3-upstream -> origin/omap3-upstream
> >> > * [new branch] pm-0 -> origin/pm-0
> >> > * [new branch] pm-0.5 -> origin/pm-0.5
> >> > * [new branch] pm-1 -> origin/pm-1
> >> > * [new branch] pm-20081006 -> origin/pm-20081006
> >> > Already up-to-date.
> >> >
> >> > It work fine.
> >> >
> >> >
> >> > But if I edit .git/config to use http protocol:
> >> >
> >> > url = http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
> >> >
> >> > And then pull:
> >> >
> >> > $ rm .git/refs/remotes/origin/pm-*; git-pull -v
> >> > From http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6
> >> > = [up to date] linus -> origin/linus
> >> > + 62c36fd...a58e707 master -> origin/master (forced update)
> >> > * [new branch] pm-0 -> origin/pm-0
> >> > * [new branch] pm-1 -> origin/pm-1
> >> > Already up-to-date.
> >> >
> >> > It pulls something that's old.
> >>
> >> Yes, it seems there was a git version update or something because the
> >> post-update hook is not there anymore.
> >>
> >> You can see it here:
> >> http://www.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git/info/refs
> >>
> >> The refs are pointing to old commits, and nothing will change until
> >> you run git update-server-info. If you enable the hook that will be
> >> done automatically each time the refs are updated.
> >
> > OK, thanks for the info.
> >
> > I've renamed post-update.sample into post-update, which
> > does exec git-update-server-info.
> >
> > I've also renamed the other *.sample files to enable them.
>
> I don't think that's a good idea... you should check what they do. I
> only know the post-update hook is needed for http.
Yeah, looks like we have them all in use in source.mvista.com.
Tony
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-10-07 16:09 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-06 14:44 HTTP url not working Felipe Contreras
2008-10-07 7:02 ` Tony Lindgren
2008-10-07 7:27 ` Tony Lindgren
2008-10-07 12:58 ` Felipe Contreras
2008-10-07 14:00 ` Tony Lindgren
2008-10-07 15:44 ` Felipe Contreras
2008-10-07 16:12 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox