克隆 gitlab 存储库主机密钥验证失败。致命:无法从远程存储库读取
Clone gitlab repository Host key verification failed. fatal: Could not read from remote repository
我正在尝试使用 visual studio 克隆存储库,但显示了此消息
Host key verification failed.
fatal: Could not read from remote repository.
我已经创建了一个 ssh 密钥并复制了 pub 密钥
ssh-keygen
cat /c/Users/Toshiba/.ssh/id_rsa.pub
并将其添加到我的 git实验室帐户
当我尝试从 git bash 克隆它时,我得到
The authenticity of host 'gitlab.com (2606:4700:90:0:f22e:fbec:5bed:a9b9)' can't be established.
ED25519 key fingerprint is SHA256:eUXGGm1YGsMAS7vkcx6JOJdOGHPem5gQp4taiCfCLB8.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])?
我该怎么办?
输入是是一回事。但是如果建议的指纹确实是远程 GitLab 服务器之一,那么 首先检查 是明智的。
gitlab.com
are shown here。
由于您看到的 (SHA256:eUXGGm1YGsMAS7vkcx6JOJdOGHPem5gQp4taiCfCLB8
) 与其中之一相匹配,您可以键入是,然后更新您自己的 c/Users/Toshiba/.ssh/known_hosts
文件。
GitLab 10.2(2017 年 11 月)中有一个提案(issue 25142) to expose those fingerprints on the server side, implemented with MR 13850 (and commit f913f7a)。
我正在尝试使用 visual studio 克隆存储库,但显示了此消息
Host key verification failed.
fatal: Could not read from remote repository.
我已经创建了一个 ssh 密钥并复制了 pub 密钥
ssh-keygen
cat /c/Users/Toshiba/.ssh/id_rsa.pub
并将其添加到我的 git实验室帐户 当我尝试从 git bash 克隆它时,我得到
The authenticity of host 'gitlab.com (2606:4700:90:0:f22e:fbec:5bed:a9b9)' can't be established.
ED25519 key fingerprint is SHA256:eUXGGm1YGsMAS7vkcx6JOJdOGHPem5gQp4taiCfCLB8.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])?
我该怎么办?
输入是是一回事。但是如果建议的指纹确实是远程 GitLab 服务器之一,那么 首先检查 是明智的。
gitlab.com
are shown here。
由于您看到的 (SHA256:eUXGGm1YGsMAS7vkcx6JOJdOGHPem5gQp4taiCfCLB8
) 与其中之一相匹配,您可以键入是,然后更新您自己的 c/Users/Toshiba/.ssh/known_hosts
文件。
GitLab 10.2(2017 年 11 月)中有一个提案(issue 25142) to expose those fingerprints on the server side, implemented with MR 13850 (and commit f913f7a)。