设置SSH密钥和



我是编码新手,负责设置新的SSH密钥并连接到GitHub。我已经完成了所有步骤,当我检查我是否成功配对时,我会收到以下消息:

$ ssh -T git@github.com
The authenticity of host 'github.com (140.82.121.4)' can't be established.
ED25519 key fingerprint is SHA256:+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com' (ED25519) to the list of known hosts.
Hi indiataylor1! You've successfully authenticated, but GitHub does not provide shell access.

有人能给我指正确的方向吗?

已经尝试创建一个新的SSH密钥并从头开始。

你可以出发了。

";ED25519密钥指纹";消息仅在第一个SSH连接处可见,您的消息和GitHub的官方消息匹配。

如果您再次尝试ssh -T git@github.com,您将只看到:

Hi indiataylor1! 
You've successfully authenticated, but GitHub does not provide shell access.

从那里开始,使用克隆您的存储库

git clone git@github.com:You/yourRepository

最新更新