Re: [julia-users] Re: git SSL problems with METADATA.jl

2014-07-30 Thread Isaiah Norton
Ok, I see. The difference is that the first and third URLs (with the colon after the domain name) are scp-style addresses, so git uses SSH to connect [1]. At least for METADATA initialization, you can do this: Pkg.init("github.com:JuliaLang/METADATA.jl") > However, I'm not sure what will happen w

Re: [julia-users] Re: git SSL problems with METADATA.jl

2014-07-30 Thread Florian Oswald
that didnt' work: git config --global url."https://".insteadOf git:// notice that i don't just want to have https:// instead of git:// (both don't work). i need a different call altogether, see below. On 30 July 2014 18:36, Isaiah Norton wrote: > yes - search for "insteadOf" or "https" in the r

Re: [julia-users] Re: git SSL problems with METADATA.jl

2014-07-30 Thread Isaiah Norton
yes - search for "insteadOf" or "https" in the readme. On Wed, Jul 30, 2014 at 1:11 PM, Florian Oswald wrote: > hmm, I don't know. but - this works: > > git clone g...@github.com:tlamadon/Utils.git > > and this does not > > git clone git://github.com/JuliaLang/METADATA.jl > > but that does > >

[julia-users] Re: git SSL problems with METADATA.jl

2014-07-30 Thread Florian Oswald
hmm, I don't know. but - this works: git clone g...@github.com:tlamadon/Utils.git and this does not git clone git://github.com/JuliaLang/METADATA.jl but that does git clone g...@github.com:JuliaLang/METADATA.jl I see. is there a way to tell julia to use the latter version? On Wednesday, 30

[julia-users] Re: git SSL problems with METADATA.jl

2014-07-30 Thread Ivar Nesje
Do you clone the other repositories over https or the ssh based git protocol? kl. 19:03:06 UTC+2 onsdag 30. juli 2014 skrev Florian Oswald følgende: > > i'm working on a remote server that has > > git version 1.7.4.1 > > I could use this git to build julia and clone a host of other repos, but >