Bug 129196 - git clone git://git.webkit.org/WebKit.git fails
Summary: git clone git://git.webkit.org/WebKit.git fails
Status: RESOLVED INVALID
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified OS X 10.9
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-22 00:18 PST by Dirk Schulze
Modified: 2014-12-08 09:22 PST (History)
5 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.