git ssh配置

1.单账号配置

  1. 生成key
1.执行ssh-keygen -t rsa -C “email”
2.按3次回车,生成
  id_rsa
  id_rsa.pub
  1. 全局配置
git config --global user.name "name"
git config --global user.email "email"
  1. 如果使用TortoiseGit,还需要添加以下配置
1.运行puttygen,在Conversions菜单中点击Import key,选择ssh-keygen生成的私钥文件所在位置,比如id_rsa文件。
2.点击Save private key生成TortoiseGit需要使用的ppk文件(id_rsa.ppk)
3.打开pageant,选择AddKey,选择刚刚生成的id_rsa.ppk

2.多账号配置

  1. 生成key
ssh-keygen -t rsa -C “email”

按三次回车,最后在.ssh文件夹下得到id_rsa和id_rsa.pub两个文件
注意:第二次执行时重命名文件,防止覆盖第一次生成的文件

  1. 私钥添加到本地
ssh-add ~/.ssh/id_rsa_github // 将GitHub私钥添加到本地
ssh-add ~/.ssh/id_rsa_gitlab // 将GitLab私钥添加到本地

为了检验本地是否添加成功,可以使用ssh-add -l命令进行查看

  1. 对本地秘钥进行配置
    在.ssh目录下新建一个config文件:
touch config

文件中的内容如下:

# Host 网站的别名,随意取
# HostName 托管网站的域名
# User 托管网站上的用户名
# IdentityFile 使用的密钥文件

#github配置
Host github
HostName github.com
User liugui
IdentityFile ~/.ssh/id_rsa_github

#GitLab配置
Host gitlab
HostName gitlab.com
User liugui
IdentityFile ~/.ssh/id_rsa_gitlab
  1. 公钥添加到托管网站
    以github为例:进入.ssh目录, 查看公钥id_rsa_github.pub,全选进行复制,登录GitHub,点击右上角头像选择settings,在打开的页面中选择SSH and GPG keys,选择add ssh key,名字随便取,key直接粘贴,然后保存。
    测试SSH是否连通:
正常命令:
ssh -T [email protected]

config文件配置了别名
ssh -T git@github
  1. 如何使用
正常使用:
git clone [email protected]:wkjack/RxResult.git

由于配置了别名,现使用:
git clone git@github:wkjack/RxResult.git
参考内容:

https://segmentfault.com/a/1190000016269686

你可能感兴趣的:(git ssh配置)