在公司 git 使用時, 遇到同一臺 pc 須要設置多個 git 帳號GitHub, 碼雲等等git
* ssh-keygen -t rsa -C "xxx@xxxx.com" -f github_rsa # 連續回車三次便可生成 ssh key
* cat ~/.ssh/githu_rsa.pub # ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAA......
* ssh-keygen -t rsa -C "xxx@xxxx.com" -f oschina_rsa # 連續回車三次便可生成 ssh key
* cat ~/.ssh/oschina_rsa.pub # ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAA......
vim ~/.ssh/config
並輸入:github
Host github.com HostName github.com User git IdentityFile ~/.ssh/github_rsa Host oschina HostName git.oschina.net User git IdentityFile ~/.ssh/oschina_rsa
而後逐一執行:vim
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 的一點簡單應用,有任何疑問能夠留言或自行搜索引擎。ssh