美文网首页
GitHub配置SSH Key

GitHub配置SSH Key

作者: 月弦 | 来源:发表于2020-06-16 12:34 被阅读0次

    一、设置用户名和邮件

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

    二、查看配置

    git config --list
    

    三、修改用户名和邮件

    git config --global --replace-all user.name "你的用户名"
    git config --global --replace-all user.email "你的邮箱"
    

    四、生成SSH Key

    ssh-keygen -t rsa -C "你的github账号"
    
    //spring cloud可以识别的
    ssh-keygen -m PEM -t rsa -b 4096 -C "你的github账号"
    

    五、检查是否存在SSH Key

    cd ~/.ssh
    ls
    或者
    ll
    //看是否存在 id_rsa 和 id_rsa.pub文件,如果存在,说明已经有SSH Key
    

    六、获取SSH Key

    cat id_rsa.pub
    //拷贝秘钥 ssh-rsa开头
    
    1. GitHub点击用户头像,选择setting
    2. 新建一个SSH Key
    3. 取个名字,把之前拷贝的秘钥复制进去,添加就好啦。

    七、测试是否成功配置SSH Key

    ssh -T git@github.com
    

    之前已经是https的链接,现在想要用SSH提交怎么办?
    直接修改项目目录下 .git文件夹下的config文件,将地址修改一下就好了。

    相关文章

      网友评论

          本文标题:GitHub配置SSH Key

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