Bug 129196

Summary: git clone git://git.webkit.org/WebKit.git fails
Product: WebKit Reporter: Dirk Schulze <krit>
Component: WebCore Misc.Assignee: Nobody <webkit-unassigned>
Status: RESOLVED INVALID    
Severity: Normal CC: berto, lforschler, matthew_hanson, mrowe, rniwa
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: OS X 10.9   

Description Dirk Schulze 2014-02-22 00:18:29 PST
If I try to do git clone git://git.webkit.org/WebKit.git it fails with:

fatal: unable to access 'https://git.webkit.org/WebKit.git/': Failed connect to git.webkit.org:443; Operation timed out

I heard of others with the same problem, so far I don't know what is going on. I tried the git version from Xcode initially and then tried homebrew git. Both give the same mistake. So it might not be an issue with git?
Comment 1 Mark Rowe (bdash) 2014-02-22 09:43:11 PST
The error message you quote mentions _https_://git.webkit.org/WebKit.git/, not _git_://git.webkit.org/WebKit.git. That suggests you're not doing "git clone git://git.webkit.org/WebKit.git" at all.
Comment 2 Dirk Schulze 2014-02-22 10:15:07 PST
(In reply to comment #1)
> The error message you quote mentions _https_://git.webkit.org/WebKit.git/, not _git_://git.webkit.org/WebKit.git. That suggests you're not doing "git clone git://git.webkit.org/WebKit.git" at all.

Well, I still do git clone git://git.webkit.org/WebKit.git though :)

I don't know why the address is resolved to https.
Comment 3 Mark Rowe (bdash) 2014-02-22 10:26:42 PST
I've no idea why you'd be seeing that. I'm successfully able to "git clone git://git.webkit.org/WebKit.git" from a number of different machines running various different versions of OS X and Linux.
Comment 4 Dirk Schulze 2014-02-24 11:42:58 PST
I commented out these lines in .gitconfig and it seemed to fix it:

[url "https://"]
	insteadOf = git://

This should actually allow both git:// and https://. Maybe it prefers https:// and the server never responses.