1. 生成对应的仓库密钥
cd ~/.ssh
或者 Command
+Shift
+G
/~/.ssh/
ssh-keygen -t rsa -C "XXX的邮箱" -f ~/.ssh/密钥名
ssh-keygen -t rsa -C "github邮箱" -f ~/.ssh/github_id-rsa
ssh-keygen -t rsa -C "gitlab邮箱" -f ~/.ssh/gitlab_id-rsa
ssh-keygen -t rsa -C "gitee邮箱" -f ~/.ssh/gitee_id-rsa
2. 将公钥添加到仓库中
cat github_id-rsa.pub
结果应是以仓库邮箱名结尾,将密钥复制后添加到仓库中。
3. 添加配置文件
在~/.ssh
路径下添加配置文件config
Host github
Port 22
User git
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github_id-rsa
Host gitlab
Port 22
User git
HostName gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitlab_id-rsa
Host gitee.com # 这边如果只写gitee,会出现匹配不到的情况
Port 22
User git
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee_id-rsa
配置文件解释:
Host
它涵盖了下面一个段的配置,我们可以通过他来替代将要连接的服务器地址。
这里可以使用任意字段或通配符。
当ssh的时候如果服务器地址能匹配上这里Host指定的值,则Host下面指定的HostName将被作为最终的服务器地址使用,并且将使用该Host字段下面配置的所有自定义配置来覆盖默认的`/etc/ssh/ssh_config`配置信息。
Port
自定义的端口。默认为22,可不配置
User
自定义的用户名,默认为git,可不配置
HostName
真正连接的服务器地址
PreferredAuthentications
指定优先使用哪种方式验证,支持密码和秘钥验证方式
IdentityFile
指定本次连接使用的密钥文件
4. 配置仓库
github工作仓库:~/workspace/github
gitlab工作仓库:~/workspace/gitlab
gitee工作仓库:~/workspace/gitee
操作如下:
global 全局的
local 本地的
#gitlab
cd ~/workspace/gitlab
git init
git config --global user.name 'xxxx'
git config --global user.email 'xxxx@xxx.com'
#github
cd ~/workspace/github
git init
git config --local user.name 'xxxx'
git config --local user.email 'xxxx@xxx.com'
5. 测试
ssh -T git@github.com
ssh -T git@gitlab.com
ssh -T git@gitee.com
注⚠️:如果要看匹配SSH的时候,具体的操作,可以加上-V
ssh -T -v git@github.com