Re: [Numpy-discussion] Trouble cloning numpy Github repo over HTTP

2010-11-09 Thread Scott Sinclair
On 30 September 2010 10:15, Scott Sinclair scott.sinclair...@gmail.com wrote: I'm behind a firewall that doesn't allow me to use the git protocol so I can't use the git:// URL. I see the following problem: $ git clone http://github.com/numpy/numpy.git numpy Initialized empty Git repository

[Numpy-discussion] Trouble cloning numpy Github repo over HTTP

2010-09-30 Thread Scott Sinclair
Hi, I'm behind a firewall that doesn't allow me to use the git protocol so I can't use the git:// URL. I see the following problem: $ git clone http://github.com/numpy/numpy.git numpy Initialized empty Git repository in /home/scott/external_repos/numpy/.git/ error: RPC failed; result=22, HTTP

Re: [Numpy-discussion] Trouble cloning numpy Github repo over HTTP

2010-09-30 Thread Benjamin Root
On Thu, Sep 30, 2010 at 3:15 AM, Scott Sinclair scott.sinclair...@gmail.com wrote: Hi, I'm behind a firewall that doesn't allow me to use the git protocol so I can't use the git:// URL. I see the following problem: $ git clone http://github.com/numpy/numpy.git numpy Initialized empty

Re: [Numpy-discussion] Trouble cloning numpy Github repo over HTTP

2010-09-30 Thread Aaron River
Hello Scott, If you're allowed access to arbitrary https urls, try: git clone https://github.com/numpy/numpy.git numpy -- Aaron On Thu, Sep 30, 2010 at 03:15, Scott Sinclair scott.sinclair...@gmail.com wrote: Hi, I'm behind a firewall that doesn't allow me to use the git protocol so I

Re: [Numpy-discussion] Trouble cloning numpy Github repo over HTTP

2010-09-30 Thread Scott Sinclair
On 30 September 2010 17:15, Aaron River ari...@enthought.com wrote: If you're allowed access to arbitrary https urls, try: git clone https://github.com/numpy/numpy.git numpy Thanks Aaron. I'm pretty sure I tried that and failed, but I'm at home now (no proxy) but will try again tomorrow.