Windows GitBash解决Github添加密钥时提示Key is already in use的问题

通过添加多密钥实现

  • ssh-agent bash
  • ssh-keygen -t rsa -C 'xx1' -f ~/.ssh/id_rsa_xx1
  • ssh-keygen -t rsa -C 'xx2' -f ~/.ssh/id_rsa_xx2
  • ssh-add id_rsa_xx1
  • ssh-add id_rsa_xx2

vim ~/.ssh/config

shell 复制代码
Host github_xx1
 HostName github.com
 User git
 IdentityFile ~/.ssh/id_rsa_xx1
Host github_xx2
 HostName github.com
 User git
 IdentityFile ~/.ssh/id_rsa_xx2
  • ssh -T -ai ~/.ssh/id_rsa_xx1 git@github_xx1
  • ssh -T -ai ~/.ssh/id_rsa_xx2 git@github_xx2
相关推荐
mortimer10 小时前
将edge-tts部署到cloudflare上,并兼容OpenAI TTS接口
人工智能·github·openai
韩数11 小时前
Nping: 支持图表实时展示的多地址并发终端命令行 Ping
后端·rust·github
梓羽玩Python14 小时前
超火的AI自动化操控浏览器神器!一夜爆火,5天内新增3K Star!AI智能体趋势使然。
人工智能·github
神的孩子都在歌唱15 小时前
你了解DNS吗?
github
NocoBase16 小时前
GitHub 上排名前 11 的开源管理后台(Admin Dashboard)项目
低代码·开源·github·仪表盘·admin
油泼辣子多加16 小时前
2024年12月27日Github流行趋势
人工智能·github
Regnaiq17 小时前
matlab客户端最新功能:使用vs code的github copilot编写mlx实时脚本文件
matlab·github·copilot
嘤嘤嘤18 小时前
基于大模型技术构建的 GitHub Assistant
前端·github
記億揺晃着的那天18 小时前
Github优质项目推荐(第九期)
github
獨枭1 天前
CMake 构建项目并整理头文件和库文件
c++·github·cmake