Linux同一客户端多个git账号的配置

多个git账号配置

  • 1. 用ssh-keygen命令生成一组新的id_rsa_new和id_rsa_new.pub。
  • 2. 配置~/.ssh/config文件,以我自己的机器为例
  • 3. 执行ssh-agent让ssh识别新的私钥。
  • 4. 在git网页上添加id_rsa_gitee.pub的内容
  • 5. 使用命令进行测试连接

在进行下列步骤前需要先查看git全局配置

git config --list

并清除共有的name, email, password的配置

git config --global --unset user.name
git config --global --unset user.email
git config --global --unset user.password

1. 用ssh-keygen命令生成一组新的id_rsa_new和id_rsa_new.pub。

ssh-keygen -t rsa -C "new email"

平时我们都是直接回车,默认生成id_rsa和id_rsa.pub。这里特别需要注意,出现提示输入文件名的时候要输入与默认配置不一样的文件名,比如: id_rsa_gitee。

2. 配置~/.ssh/config文件,以我自己的机器为例

#Default Git
Host defaultgit
HostName IP Address #域名也可
User think
PreferredAuthentications publickey
StrictHostKeyChecking no
IdentityFile ~/.ssh/id_rsa

#Second Git
Host gitee
HostName gitee.com
PreferredAuthentications publickey
StrictHostKeyChecking no
User think
IdentityFile ~/.ssh/id_rsa_gitee

Host就是每个SSH连接的单独代号,IdentityFile告诉SSH连接去读取哪个私钥

3. 执行ssh-agent让ssh识别新的私钥。

ssh-add ~/.ssh/id_rsa_gitee

该命令如果报错:**Could not open a connection to your authentication agent.**无法连接到ssh agent,可执行ssh-agent bash命令后再执行ssh-add命令。
以后,在clone或者add remote的时候,需要把config文件中的host代替git@remoteaddress中的remoteaddress。

4. 在git网页上添加id_rsa_gitee.pub的内容

5. 使用命令进行测试连接

ssh -T git@gitee
ssh -T [email protected]

你可能感兴趣的:(工具专栏,git,linux,ssh)