码迷,mamicode.com
首页 > 其他好文 > 详细

Git & SSH

时间:2020-01-08 14:10:34      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:生成   查看   fhs   git   tin   使用   xxx   article   粘贴   

生成 ssh 公钥

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!
# 即可

参考文档

Git & SSH

标签:生成   查看   fhs   git   tin   使用   xxx   article   粘贴   

原文地址:https://www.cnblogs.com/taadis/p/12166009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!