同一终端添加多个 git 账号

在公司 git 使用时, 遇到同一台 pc 需要设置多个 git 账号GitHub, 码云等等

Github

生成 ssh 公钥

* ssh-keygen -t rsa -C "xxx@xxxx.com" -f github_rsa

# 连续回车三次即可生成 ssh key

查看 github_rsa 公钥

* cat ~/.ssh/githu_rsa.pub

# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAA......

添加到 github ssh-key

Git@OSC 码云

生成 ssh 公钥

* ssh-keygen -t rsa -C "xxx@xxxx.com" -f oschina_rsa

# 连续回车三次即可生成 ssh key

查看 github_rsa 公钥

* cat ~/.ssh/oschina_rsa.pub

# ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAA......

添加到 git.oschina ssh-key

多个私钥设置 config

vim ~/.ssh/config

并输入:

Host github.com
  HostName github.com 
  User git
  IdentityFile ~/.ssh/github_rsa

Host oschina
  HostName git.oschina.net
  User git
  IdentityFile ~/.ssh/oschina_rsa

然后逐一执行:

ssh-agent

ssh-add ~/.ssh/github_rsa

ssh-add ~/.ssh/oschina_rsa

检测是否成功

ssh -T git@git.oschina.net

# 若添加成功,返回 Welcome to Git@OSC, xxx

ssh -T git@github.com

# 若添加成功,返回 Hi xxx! You've seccessfully authenticated...

结束语

完成同一 PC 添加多个 git 平台, 账户。
对 Git 的一点简单应用,有任何疑问可以留言或自行搜索引擎。

    原文作者:leyliu
    原文地址: https://segmentfault.com/a/1190000010680085
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞