美文网首页
设置SSH key

设置SSH key

作者: Yix1a | 来源:发表于2019-01-26 10:52 被阅读6次

    github上来链接已有仓库时的认证,是通过使用了ssh的公开密钥认证方式进行的。

    • 创建SSH key
    $ ssh-keygen -t rsa -C "your_email@example.com"
    Generating public/private rsa key pair.
    Enter file in which to save the key
    (/Users/your_user_directory/.ssh/id_rsa): 按回车键
    Enter passphrase (empty for no passphrase): 输入密码
    Enter same passphrase again: 再次输入密码
    

    输入完成后会在个人文件夹出现一个.ssh 里面的id_rsa.pub就是公钥。粘贴进去github。ssh设置里面

    相关文章

      网友评论

          本文标题:设置SSH key

          本文链接:https://www.haomeiwen.com/subject/rfuvrftx.html