为大学项目在 github 上克隆存储库时出现问题
Problems cloning a repository on github for a college project
我一直在尝试为一个项目克隆一个模板,我们打算通过 cmd 进行分叉和下载,我按照所有说明进行了设置,但是现在当我在笔记本电脑上尝试时,它不会让我这样做访问它?我收到以下错误:
Cloning into 'ionic-assignment'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
根据我的经验,这可能意味着您正在使用 ssh 并且尚未设置 ssh 密钥。这是对它的解释:http://git-scm.com/book/en/v2/Git-on-the-Server-Generating-Your-SSH-Public-Key
如果您使用 GitHub 或 BitBucket,这个过程非常简单。
GitHub: https://help.github.com/articles/generating-ssh-keys/
我一直在尝试为一个项目克隆一个模板,我们打算通过 cmd 进行分叉和下载,我按照所有说明进行了设置,但是现在当我在笔记本电脑上尝试时,它不会让我这样做访问它?我收到以下错误:
Cloning into 'ionic-assignment'...
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
根据我的经验,这可能意味着您正在使用 ssh 并且尚未设置 ssh 密钥。这是对它的解释:http://git-scm.com/book/en/v2/Git-on-the-Server-Generating-Your-SSH-Public-Key
如果您使用 GitHub 或 BitBucket,这个过程非常简单。
GitHub: https://help.github.com/articles/generating-ssh-keys/