Git 配置多个 SSH-Key
一个开发者在同一台机器上拥有多个 Git 账号,是比较常见的。如 Gitee 用于工作,GitHub 用于个人,这时候往往需要配置多个 SSH-Key。
解决方法
生成 SSH-Key
# 生成 GitHub 用的 SSH-Key $ ssh-keygen -t rsa -C 'xxx@qq.com' -f ~/.ssh/github_id_rsa # 生成 Gitee 用的 SSH-Key $ ssh-keygen -t rsa -C 'xxx@company.com' -f ~/.ssh/gitee_id_rsa
在 ~/.ssh
目录下的 config
文件(若没有则创建),添加如下内容:
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github_id_rsa
# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gitee_id_rsa
其中 Host
和 HostName
填写 Git 服务器的域名,IdentityFile
指定私钥的路径。
用 SSH 命令分别测试。
$ ssh -T git@github.com $ ssh -T git@gitee.com
如果成功的话,会返回以下内容。
$ ssh -T git@github.com Hi toFrankie! You've successfully authenticated, but GitHub does not provide shell access. $ ssh -T git@gitee.com Hi 越前君! You've successfully authenticated, but GITEE.COM does not provide shell access.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论