git clone显示“在xxxxxxxxx(我的目录)中初始化的空Git存储库”

时间:2015-11-23 01:25:37

标签: git github

我将项目存储库更改为私有,当我尝试从github中取出时,它失败了。然后我删除了目录中的所有内容,并尝试将新的存储库克隆到我的计算机,但它也失败了。

我使用了“git clone https://github.com/username/myrepo.git”,它说:

xxxxx / myrepo / .git /中初始化的空Git存储库 错误:请求的URL返回错误:403访问https://github.com/username/myrepo.git/info/refs时被禁止 致命:HTTP请求失败

然后我也尝试了“git clone https://username@github.com/username/myrepo.git” 它说:

xxxx / myrepo / .git /

中初始化的空Git存储库

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

尝试使用ssh网址进行克隆:

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

答案 1 :(得分:0)

错误403表示拒绝权限。您需要在github上设置您的公钥。这里的说明:https://help.github.com/articles/generating-ssh-keys/