git ssh密钥配置添加

Posted dqh123

tags:

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

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


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

$ git config --global user.email "[email protected]"

2. git使用ssh密钥


$ ssh-keygen -t rsa -C "[email protected]"

技术分享图片

3.生成密钥对

cat ~/.ssh/id_rsa.pub

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

 

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

     远程添加完后验证


$ ssh -T [email protected]

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密钥配置添加的主要内容,如果未能解决你的问题,请参考以下文章

以及git如何使用ssh密钥(将ssh密钥添加到g

git ssh密钥生成与配置

一台电脑上配置多个git的ssh key

学习:使用git,添加ssh密钥到github

生成SSH密钥添加到GitHub

最简单的 Mac配置gitlab ssh密钥方法