标签:生成 查看 fhs git tin 使用 xxx article 粘贴
ssh-keygen -t rsa -C "your@xxx.com"
# Generating public/private rsa key pair...
# 回车3次即可
# 查看生成的公钥
cat ~/.ssh/id_rsa.pub
# ssh-rsa fhjfksdfhsdjkfhsfkshfksfhs...
手动拷贝公钥,以便后续直接粘贴使用,当然你也可以用命令拷贝
# clip 是 Windows 下的命令
# 把公钥文本拷贝到剪切板,以便后面
clip < ~/.ssh/id_rsa.pub
添加公钥到目标平台后,测试下是否正常
ssh -T git@github.com
# 若返回
Welcome to Github.com, yourname!
# 即可
标签:生成 查看 fhs git tin 使用 xxx article 粘贴
原文地址:https://www.cnblogs.com/taadis/p/12166009.html