尝试使用Mac OS 10.11.6上的终端克隆Github上的repo。我使用SSH并收到以下错误:
git clone git@github.com:myaccount/ng2-workshop-review.git
Cloning into 'ng2-workshop-review'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我该如何解决这个问题?
答案 0 :(得分:0)
答案 1 :(得分:0)
Permission denied (publickey)
此问题可能是由于SSH配置错误或github缺少已定义的SSH密钥。如果您不使用此方法进行克隆(以及其他操作),首先您必须更正为github创建和配置SSH密钥,也许此页面可以帮助您:https://help.github.com/articles/connecting-to-github-with-ssh/
如果您不想使用SSH密钥,您始终可以通过HTTPS克隆存储库:
git clone https://github.com/myaccount/ng2-workshop-review.git