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

git ssh密钥配置添加

时间:2018-08-19 19:05:25      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:bsp   com   image   nbsp   account   str   csharp   iot   ica   

 1.  初次安装git配置用户名和邮箱


$ git config --global user.name "xxx"

$ git config --global user.email "xx@163.com"

2. git使用ssh密钥


$ ssh-keygen -t rsa -C "xxx@126.com"

技术分享图片

3.生成密钥对

cat ~/.ssh/id_rsa.pub

ssh-rsa B3NzaC1yc2EAAAADAQABAAABAQDDLFAvtyxdR0TGyLHsSDFk/PjBbG2QIqNiyuStWrOy1bjL/c615lLjWS26zVf++zI6d7Vdcfrc/L7YRMng099O3CunXVYmlaRJj5Uii0IW6/dFZPmCa2QtAOvuJRJLGKtGLa6vxvqMwvUzsvHz64QCzXIotcFlewKKTlRvrxArOuwEskgcX7/Vr71XZoaz72Bs4LSTZ6NQPrfkbb6ku0hws9ERy2wtnoSpo2wkXkODvdzpDtuxAIYQhxnLEMHyWkvCG9RVW6UDkHWpf9+KbJWzKz9g0I1CC58iDP3BBkr/O+hBT7/inFSD

 

4. 添加公钥到你的远程仓库(github)

     远程添加完后验证


$ ssh -T git@github.com

Hi xxx! You‘ve successfully authenticated, but GitHub does not # provide shell access.

成功

 

5、修改git的remote url

$ git remote -v
origin https://github.com/someaccount/someproject.git (fetch) origin https://github.com/someaccount/someproject.git (push)

  

git ssh密钥配置添加

标签:bsp   com   image   nbsp   account   str   csharp   iot   ica   

原文地址:https://www.cnblogs.com/dqh123/p/9502051.html

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