注册了github的账号,设置了如下命令
git config --global user.name
git config --global user.email
新建了库HelloWorld
执行命令git clone git://github.com/yiyayitian/HelloWorld .git
(我的github访问地址是https://github.com/yiyayitian)
得到如下:
Cloning into '.git'...
fatal: Unable to look up github.com (port 9418) (nodename nor servname provided, or not known)
请问这是什么原因导致的呢?
你
git clone
用的git://
协议,但是你明显没配置ssh
,当然github
会拒绝你的clone
请求。你可以直接改为
https://
协议,git clone https://github.com/yiyayitian/HelloWorld .git
或者你返回重新配置,添加好ssh 公钥。
在
github
上打开你的account
setting
,在左侧栏找到SSH keys
,把生成的 ssh 公钥添加进去即可。这时你再使用之前使用的命令,就不会被拒绝了。