Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] git clone with http not giving me commits after Jul 6
@ 2012-08-13 18:10 Neale Pickett
  2012-08-13 19:43 ` Carsten Schoenert
  0 siblings, 1 reply; 5+ messages in thread
From: Neale Pickett @ 2012-08-13 18:10 UTC (permalink / raw)
  To: buildroot

I just did a new clone of buildroot with

    git clone http://git.buildroot.net/git/buildroot.git

The most recent commit is dated

    Date:   Fri Jul 6 02:57:33 2012 +0000

In particular, I don't have the 2012.08_rc1 tag.

-- 
Neale Pickett <neale@lanl.gov>
Advanced Computing Solutions, Los Alamos National Laboratory

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] git clone with http not giving me commits after Jul 6
  2012-08-13 18:10 [Buildroot] git clone with http not giving me commits after Jul 6 Neale Pickett
@ 2012-08-13 19:43 ` Carsten Schoenert
  2012-08-13 19:56   ` Neale Pickett
  0 siblings, 1 reply; 5+ messages in thread
From: Carsten Schoenert @ 2012-08-13 19:43 UTC (permalink / raw)
  To: buildroot

Hello Neale,

I use another URL an get all the tags and branches like seen on
http://git.buildroot.net/buildroot/ .

> carsten at wheezy:~/gitprojects/buildroot [master]$ grep "url"  .git/config 
> 	url = git://git.busybox.net/buildroot

Do you have checked the output of 'git branch -a' and 'git tag -l'?

Regards
Carsten

and now to the ML :)

Am 13.08.2012 20:10, schrieb Neale Pickett:
> I just did a new clone of buildroot with
> 
>     git clone http://git.buildroot.net/git/buildroot.git
> 
> The most recent commit is dated
> 
>     Date:   Fri Jul 6 02:57:33 2012 +0000
> 
> In particular, I don't have the 2012.08_rc1 tag.
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] git clone with http not giving me commits after Jul 6
  2012-08-13 19:43 ` Carsten Schoenert
@ 2012-08-13 19:56   ` Neale Pickett
  2012-08-14 13:43     ` Thomas Petazzoni
  2012-08-14 16:16     ` [Buildroot] Workaround: " Neale Pickett
  0 siblings, 2 replies; 5+ messages in thread
From: Neale Pickett @ 2012-08-13 19:56 UTC (permalink / raw)
  To: buildroot

I'm unable to use the git protocol because it is firewalled out where I
work.

The problem may be that update-server-info has quit running.  This
would explain the behavior I'm observing (git protocol is current, http
protocol is not).  It may also be my company's HTTP proxy, although I'm
doubtful that it has still cached a manifest file from over a month ago.

My remote branches (on origin) are "master" and "next".  Neither has
the 2012.08_rc1 tag, which according to the cgit interface, are on the
"master" branch.

    cfl-science:/home/neale/src/buildroot$ git tag -l | grep -c 2012.08
    0



On Mon, 13 Aug 2012 21:43:24 +0200
Carsten Schoenert <c.schoenert@gmail.com> wrote:

> Hello Neale,
> 
> I use another URL an get all the tags and branches like seen on
> http://git.buildroot.net/buildroot/ .
> 
> > carsten at wheezy:~/gitprojects/buildroot [master]$ grep
> > "url"  .git/config url = git://git.busybox.net/buildroot
> 
> Do you have checked the output of 'git branch -a' and 'git tag -l'?
> 
> Regards
> Carsten
> 
> and now to the ML :)
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot



-- 
Neale Pickett <neale@lanl.gov>
Advanced Computing Solutions, Los Alamos National Laboratory

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] git clone with http not giving me commits after Jul 6
  2012-08-13 19:56   ` Neale Pickett
@ 2012-08-14 13:43     ` Thomas Petazzoni
  2012-08-14 16:16     ` [Buildroot] Workaround: " Neale Pickett
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2012-08-14 13:43 UTC (permalink / raw)
  To: buildroot

Hello Neale,

Le Mon, 13 Aug 2012 13:56:40 -0600,
Neale Pickett <neale@lanl.gov> a ?crit :

> I'm unable to use the git protocol because it is firewalled out where I
> work.
> 
> The problem may be that update-server-info has quit running.  This
> would explain the behavior I'm observing (git protocol is current, http
> protocol is not).  It may also be my company's HTTP proxy, although I'm
> doubtful that it has still cached a manifest file from over a month ago.

Yes, this is a known issue since I have replaced Peter as the Buildroot
maintainer. When I push, I have a message that tells me "Permission
denied" on the execution of the post-commit hook, which means that the
update-server-info git command is not being executed on the server. We
started investigating this problem with Peter, but then he left for
holidays and the problem remained unresolved.

I'll try to contact the system administrators to see if we can get this
problem fixed. In any case, as soon as Peter comes back as a
maintainer, the problem will be solved.

Best regards,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] Workaround: git clone with http not giving me commits after Jul 6
  2012-08-13 19:56   ` Neale Pickett
  2012-08-14 13:43     ` Thomas Petazzoni
@ 2012-08-14 16:16     ` Neale Pickett
  1 sibling, 0 replies; 5+ messages in thread
From: Neale Pickett @ 2012-08-14 16:16 UTC (permalink / raw)
  To: buildroot

I heard back that the problem is, in fact, update-server-info not
running on commit.  It is supposed to be resolved soon.

In the meantime, cgit (the git web interface used at busybox.net) also
supports checkout over HTTP.  So you can use this:

    git clone http://git.buildroot.net/buildroot/

To fetch the latest over HTTP.  Until the site admins disable it :)

Neale

-- 
Neale Pickett <neale@lanl.gov>
Advanced Computing Solutions, Los Alamos National Laboratory

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-08-14 16:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-13 18:10 [Buildroot] git clone with http not giving me commits after Jul 6 Neale Pickett
2012-08-13 19:43 ` Carsten Schoenert
2012-08-13 19:56   ` Neale Pickett
2012-08-14 13:43     ` Thomas Petazzoni
2012-08-14 16:16     ` [Buildroot] Workaround: " Neale Pickett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox