同一台主机两个github账号切换使用

同一主机两个github账号切换使用

可能某些原因,我们需要在公司与个人之间切换相关的开发者账号。如同一台主机两个github账号

此为windows环境

操作步骤如下

首先,创建2组 公私钥

默认用户目录 ~/.ssh

bash 复制代码
$ ssh-keygen -t ed25519 -C "your_email_1@example.com"
Enter file in which to save the key (~/.ssh/id_ed25519):
# 回车, 默认生成 id_ed25519 和 id_ed25519.pub

$ ssh-keygen -t ed25519 -C "your_email_1@example.com"
Enter file in which to save the key (~/.ssh/id_ed25519):
# 录入 id_ed25519_sec, 生成 id_ed25519_sec 和 id_ed25519_sec.pub

其次,生成一个新文件 ~\.ssh\config

假设两个github账号分别为

comment username email
github-one oneAcc oneAcc@aa.cc
github-sec testeru testeru@xx.cc
bash 复制代码
# Default account (first account)
Host github-one
    HostName github.com
    PreferredAuthentications publickey
    User git
    IdentityFile ~/.ssh/id_ed25519
    IdentitiesOnly yes

# Second account
Host github-sec
    HostName github.com
    PreferredAuthentications publickey
    User git
    IdentityFile ~/.ssh/id_ed25519_sec
    IdentitiesOnly yes

再次,将生成的公钥分别放入不同的github账号中

github > settings -> keys -> Access -> SSH and GPG keys -> New SSH key

最后测试

假设 second account 账号实际为 testeru, 且有一个repository 为abc

$ git clone git@github-sec:testeru/abc.git

备注

代码修改提交(可能会失败),如失败,设置当前目录下的用户为

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