赞
踩
【Step 1】 打开终端,输入 cd ~/.ssh,检查是否已经存在了SSH密钥。如果你看到类似id_rsa.pub的文件,说明你已经有了一对公钥和私钥,可以跳过第 2 步和第 3 步。
【Step 2】 在终端输入ssh-keygen -t rsa -C “你的邮箱地址” ,生成新的SSH密钥。你可以直接按回车键使用默认的文件路径和空密码,也可以自己设置。
【Step 3】 在终端输入ssh-add ~/.ssh/id_rsa,添加SSH密钥到 ssh-agent。如果你之前设置了密码,这里需要再次输入。
【Step 4】 在终端输入vim ~/.ssh/id_rsa.pub,查看并复制你的公钥内容。你可以把公钥添加到
原文链接:https://blog.csdn.net/w605283073/article/details/130038455
【5】如果在clone时报:
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ED25519 key sent by the remote host is
执行:rm -rf ~/.ssh/known_hosts
【6】如果在clone时报:确定要继续连接吗(是/否/[指纹])?
ssh -o UserKnownHostsFile=$HOME/.config/ssh/known_hosts git@github.com (你的git clone 网址)
请参阅:https://www.null123.com/question/detail-2584509.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。