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 | ||
Dirk Schulze
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?
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Mark Rowe (bdash)
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.
Dirk Schulze
(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.
Mark Rowe (bdash)
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.
Dirk Schulze
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.