嘿,我正在尝试学习 git,但我遇到了致命错误:无法从远程仓库读取 [重复]
Posted
技术标签:
【中文标题】嘿,我正在尝试学习 git,但我遇到了致命错误:无法从远程仓库读取 [重复]【英文标题】:hey am trying to learn git and i im getting error fatal: could not read from remote repo [duplicate] 【发布时间】:2021-07-21 04:50:20 【问题描述】:我在 Github 上注册,然后创建了名为 lgit(“learn git”)的私有 repo,至少尝试从终端测试运行命令,但在尝试将 repo 克隆到我的机器时出现错误。
r3tr0@iCBM:~/test/gittest$ git clone git@github.com:s0ur48h/lgit-rep.git
Cloning into 'lgit-rep'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
【问题讨论】:
***.com/… 【参考方案1】:这个问题是因为你没有在 github 中配置你的 SSH 密钥,我认为这可能会有所帮助:
https://docs.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account
也可能是因为您的身边也没有配置 ssh 密钥。
【讨论】:
【参考方案2】:因为您正在尝试使用 SSH 在本地克隆您的存储库。您可以查看@Luck 的答案。
或者使用用户名和密码,您可以使用 https 克隆您的 repo,获取 git https 进行克隆,如下所示。
【讨论】:
以上是关于嘿,我正在尝试学习 git,但我遇到了致命错误:无法从远程仓库读取 [重复]的主要内容,如果未能解决你的问题,请参考以下文章