3

当 I 时ssh -v git@github.com,它的身份验证很好。

但是,当git clone https://github.com/myusername/project.git我得到:

Initialized empty Git repository in /home/webapps/myproject/.git/
Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?

我已经三重检查了我输入的网址是否正确。另外,我是否使用 git:// vs http:// 协议也没关系。有任何想法吗?

4

2 回答 2

4

git clone git://github.com/myusername/project.git

应该有帮助。

于 2013-03-25T22:00:24.423 回答
0

尝试实际使用 SSH 协议(如果您不指定协议,也会发生这种情况):

git clone git@github.com:username/project.git

还要仔细检查您输入的用户名和项目是否正确(如果您尝试克隆现有项目,您是否已经分叉了存储库)。

于 2012-09-13T02:28:58.420 回答