All of lore.kernel.org
 help / color / mirror / Atom feed
* No feedback when cloning `http://oss.tresys.com/git/selinux.git`
@ 2012-02-22 19:32 Paul Menzel
  2012-02-22 19:50 ` Christopher J. PeBenito
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2012-02-22 19:32 UTC (permalink / raw)
  To: selinux

[-- Attachment #1: Type: text/plain, Size: 461 bytes --]

Dear SELinux folks,


trying to clone the SELinux user space programs [1] I issue


        $ git clone http://oss.tresys.com/git/selinux.git
        Cloning into 'selinux'...

but it just hangs there. So I thought it does not work. Letting it stay
for more than a minute it finished. Other Git repositories give some
kind of feedback. Are some hooks missing?


Thanks,

Paul


[1] http://userspace.selinuxproject.org/trac/wiki/Contributing

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

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

* Re: No feedback when cloning `http://oss.tresys.com/git/selinux.git`
  2012-02-22 19:32 No feedback when cloning `http://oss.tresys.com/git/selinux.git` Paul Menzel
@ 2012-02-22 19:50 ` Christopher J. PeBenito
  2012-02-22 20:02   ` Joe Nall
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher J. PeBenito @ 2012-02-22 19:50 UTC (permalink / raw)
  To: Paul Menzel; +Cc: selinux

On 02/22/12 14:32, Paul Menzel wrote:
> Dear SELinux folks,
> 
> 
> trying to clone the SELinux user space programs [1] I issue
> 
> 
>         $ git clone http://oss.tresys.com/git/selinux.git
>         Cloning into 'selinux'...
> 
> but it just hangs there. So I thought it does not work. Letting it stay
> for more than a minute it finished. Other Git repositories give some
> kind of feedback. Are some hooks missing?

Are you sure you're waiting long enough?  I was able to clone a fresh copy of the repo using the above command w/o problem.  It took 48s for me.

-- 
Chris PeBenito
Tresys Technology, LLC
www.tresys.com | oss.tresys.com

--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

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

* Re: No feedback when cloning `http://oss.tresys.com/git/selinux.git`
  2012-02-22 19:50 ` Christopher J. PeBenito
@ 2012-02-22 20:02   ` Joe Nall
  2012-02-23 10:04     ` Paul Menzel
  0 siblings, 1 reply; 4+ messages in thread
From: Joe Nall @ 2012-02-22 20:02 UTC (permalink / raw)
  To: Christopher J. PeBenito; +Cc: Paul Menzel, selinux


On Feb 22, 2012, at 1:50 PM, Christopher J. PeBenito wrote:

> On 02/22/12 14:32, Paul Menzel wrote:
>> Dear SELinux folks,
>> 
>> 
>> trying to clone the SELinux user space programs [1] I issue
>> 
>> 
>>        $ git clone http://oss.tresys.com/git/selinux.git
>>        Cloning into 'selinux'...
>> 
>> but it just hangs there. So I thought it does not work. Letting it stay
>> for more than a minute it finished. Other Git repositories give some
>> kind of feedback. Are some hooks missing?
> 
> Are you sure you're waiting long enough?  I was able to clone a fresh copy of the repo using the above command w/o problem.  It took 48s for me.

I think what he is referring to is:

time git clone http://oss.tresys.com/git/selinux.git
Cloning into selinux...

real	0m46.487s
user	0m1.255s
sys	0m2.326s

time git clone https://github.com/joyent/node.git
Cloning into node...
remote: Counting objects: 60958, done.
remote: Compressing objects: 100% (15947/15947), done.
Receiving objects:  17% (10687/60958), 16.84 MiB | 820 KiB/s   

the remote: and Receiving objects: lines

joe




--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

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

* Re: No feedback when cloning `http://oss.tresys.com/git/selinux.git`
  2012-02-22 20:02   ` Joe Nall
@ 2012-02-23 10:04     ` Paul Menzel
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Menzel @ 2012-02-23 10:04 UTC (permalink / raw)
  To: Joe Nall; +Cc: Christopher J. PeBenito, selinux

[-- Attachment #1: Type: text/plain, Size: 1308 bytes --]

Am Mittwoch, den 22.02.2012, 14:02 -0600 schrieb Joe Nall:
> On Feb 22, 2012, at 1:50 PM, Christopher J. PeBenito wrote:
> 
> > On 02/22/12 14:32, Paul Menzel wrote:

> >> trying to clone the SELinux user space programs [1] I issue
> >> 
> >> 
> >>        $ git clone http://oss.tresys.com/git/selinux.git
> >>        Cloning into 'selinux'...
> >> 
> >> but it just hangs there. So I thought it does not work. Letting it stay
> >> for more than a minute it finished. Other Git repositories give some
> >> kind of feedback. Are some hooks missing?
> > 
> > Are you sure you're waiting long enough?  I was able to clone a fresh copy of the repo using the above command w/o problem.  It took 48s for me.
> 
> I think what he is referring to is:
> 
> time git clone http://oss.tresys.com/git/selinux.git
> Cloning into selinux...
> 
> real	0m46.487s
> user	0m1.255s
> sys	0m2.326s
> 
> time git clone https://github.com/joyent/node.git
> Cloning into node...
> remote: Counting objects: 60958, done.
> remote: Compressing objects: 100% (15947/15947), done.
> Receiving objects:  17% (10687/60958), 16.84 MiB | 820 KiB/s   
> 
> the remote: and Receiving objects: lines

Correct, that is what amount by writing »feedback«. I am sorry for the
confusion.


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

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

end of thread, other threads:[~2012-02-23 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-22 19:32 No feedback when cloning `http://oss.tresys.com/git/selinux.git` Paul Menzel
2012-02-22 19:50 ` Christopher J. PeBenito
2012-02-22 20:02   ` Joe Nall
2012-02-23 10:04     ` Paul Menzel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.