在公司 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 的一點簡單應用,有任何疑問可以留言或自行搜尋引擎。