octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 'hg update' failing


From: Mike Miller
Subject: Re: 'hg update' failing
Date: Thu, 23 Aug 2012 11:13:40 -0400

On Thu, Aug 23, 2012 at 10:37 AM, CdeMills wrote:
> I tried:
>
> git --version
> git version 1.7.11.5

This is extremely new, built yourself? Did you build with curl support?

> and
>
> ping code.google.com
> PING code.l.google.com (74.125.230.65): 56 data bytes
> 64 bytes from 74.125.230.65: icmp_seq=0 ttl=52 time=12.526 ms

How about:

  openssl s_client -connect code.google.com:443

> finally, git clone -v ... does not produce more usefull messages.

A couple more ideas.

1. git needs the https helper:

git help -a | grep https

Do you see remote-https? If not, your git was built without libcurl
and it's not going to work at all. Rebuild or get a git built with
curl.

2. git over https tries to verify remote SSL key, which will fail if
you don't have the key issuer in your distribution's certificate
collection, you can temporarily disable SSL verification:

export GIT_SSL_NO_VERIFY=1

Does it work now?

HTH.

-- 
mike


reply via email to

[Prev in Thread] Current Thread [Next in Thread]