git SSH公钥配置

Posted lqw007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git SSH公钥配置相关的知识,希望对你有一定的参考价值。

  1. 首先查看是否已安装SSH key
     
    ls -al ~/.ssh
    

     如果已经存在,直接通过以下命令复制,然后去对应的gitlab或gihub等网站进行设置

    pbcopy < ~/.ssh/id_rsa.pub
    

     

  2. 如果没有出现这两个文件,则配置github的用户名和密码
     
    git config --global user.name "your_name"
    git config --global user.email "your_email@example.com"
    

     可以通过git config --list 查看是否已配置成功

  3. 创建SSH并复制,然后去对应的gitlab或gihub等网站进行设置
     
    ssh-keygen -t rsa -C "your_email@example.com"
    pbcopy < ~/.ssh/id_rsa.pub

     

以上是关于git SSH公钥配置的主要内容,如果未能解决你的问题,请参考以下文章

Git ssh公钥配置

git配置SSH公钥

为git配置ssh

Git Github使用文档

配置github SSH公钥登录

git ssh 密钥生成以及配置