我只想尝试在这里做第一步,如何将There20添加到我的项目中:Three20
但是,当我在终端上运行此功能时:git clone git://github.com/facebook/three20.git
,它说:
Cloning into three20...
fatal: Unable to look up github.com (port 9418) (nodename nor servname provided, or not known)
我还尝试使用git://github.com/facebook/three20.git
,这会打开Xcode
,但主机无法访问。
我当然可以访问github.com。
我做错了什么?
答案 0 :(得分:2)
请尝试使用https协议:
git clone https://github.com/facebook/three20.git
您可能位于通过git协议阻止访问的防火墙后面。
答案 1 :(得分:0)
您也可以尝试:
git clone git@github.com:facebook/three20.git
我在子模块设置方面遇到了类似的问题。我更改了配置文件,使子模块URL采用这种格式,不包括协议前缀,并将用户名转换为端口号。这对我有用。