gpt4 book ai didi

git - 对同一 Git 主机上的不同帐户使用不同的 SSH key

转载 作者:太空狗 更新时间:2023-10-29 13:17:03 26 4
gpt4 key购买 nike

如果我把它作为一个用例来问,这个问题会很简单。我的电脑上有两个 SSH key

  1. personal_id_rsa
  2. company_id_rsa

我在 bitbucket.org 上有两个不同的用户帐户.其中一个是我的个人账户,另一个是我的公司账户。我的 PC 上也有 N 个存储库。其中一些必须与我的个人帐户相关联,一些其他 repo 协议(protocol)必须与公司帐户相关联。没有必须链接到这两个帐户的存储库。我已将 ~/.ssh/config 中的 Identityfile 设置为如下所示。

Host *.bitbucket.org
IdentityFile ~/.ssh/company_id_rsa

每当我想将某些东西推送到我的个人存储库时,我都会将配置文件更改为如下所示。

Host *.bitbucket.org
IdentityFile ~/.ssh/personal_id_rsa

现在,每当我想进行 git push 时,编辑文件变得非常不便。我只是在想,如果我可以在飞行时拿起其中一个键,当我按下时,它会容易得多。有什么办法吗?

我遇到了 this解释类似用例的问题,但这不是此处的确切用例。

最佳答案

您可以在 ssh 配置文件中添加两个 Bitbucket“帐户”。 Bitbucket 有替代的 ssh 主机监听端口 443(对于那些几乎阻止了所有端口的人(原文如此!))。

Host bitbucketCompany
User git
HostName altssh.bitbucket.org
Port 443
IdentityFile ~/.ssh/company_id_rsa

Host bitbucketWork
User git
HostName bitbucket.org
Port 22
IdentityFile ~/.ssh/personal_id_rsa

然后在 .git/config 中更新你的 Remote

公司项目

[remote "origin"]
url = ssh://bitbucketCompany/username/repo.git

个人项目

[remote "origin"]
url = ssh://bitbucketPersonal/username/repo.git

关于git - 对同一 Git 主机上的不同帐户使用不同的 SSH key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20353564/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com