美文网首页
Git(生成SSH key)

Git(生成SSH key)

作者: JetLu | 来源:发表于2016-10-11 18:43 被阅读36次
    // 查看是否存在
    ls -al ~/.ssh
    
    // 生成
    ssh-keygen -t rsa -b 4096 -C "*your_email@example.com*"
    
    // 添加到本地目录
    ssh-add ~/.ssh/id_rsa
    
    // 导入剪切板
    clip < ~/.ssh/id_rsa.pub
    

    相关文章

      网友评论

          本文标题:Git(生成SSH key)

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