美文网首页
Git SSH keys 从生成到使用

Git SSH keys 从生成到使用

作者: 简讯Alfred | 来源:发表于2020-02-11 11:36 被阅读0次
    github

    觉得内容不错请关注个人博客:https://lijianxun.top/
    最新文章将在个人博客上发布。

    配置 git 用户名和邮箱

    git config --global user.name "git 用户名"
    git config --global user.email "git 邮箱"
    

    生成公钥和私钥

    ssh-keygen -t rsa -C "git 邮箱"
    

    然后一路回车,直到生成类似的图形:

    +--[ RSA 2048]----+
    |                 |
    |                 |
    |        . E +    |
    |       . o = .   |
    |      . S =   o  |
    |       o.O . o   |
    |       o .+ .    |
    |      . o+..     |
    |       .+=o      |
    +-----------------+
    

    获取 id_rsa.pub

    找到 .ssh 目录,查看 id_rsa.pub 文件,全部复制,接下来去 github 里配置。

    以上步骤可以参考此图:

    ssh-key

    配置 github

    save_sshkey

    在 github 的设置里找到 SSH and GPG key,填入名称和刚复制的内容,保存即可。

    这样配置以后就可以直接使用 git@github.com 开头的仓库链接,不再输入用户名和密码。

    觉得内容不错请关注个人博客:https://lijianxun.top/
    最新文章将在个人博客上发布。

    相关文章

      网友评论

          本文标题:Git SSH keys 从生成到使用

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