码迷,mamicode.com
首页 > 其他好文 > 详细

git SSH公钥配置

时间:2020-07-04 22:44:23      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:用户   lob   gen   div   key   设置   pre   github   出现   

  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公钥配置

标签:用户   lob   gen   div   key   设置   pre   github   出现   

原文地址:https://www.cnblogs.com/lqw007/p/13236841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!