我对多个 git-ssh-key 有一些疑问
我想知道
我为每个存储库(同一个 git 帐户)创建了一个 git-ssh 密钥主机。这样对吗?
我最好为每个存储库创建一个 [rsa_github] 文件。
配置文件
Host github-git
HostName github.com
IdentityFile ~/.ssh/[rsa_github]
User git
Host github-git-secondary
HostName github.com
IdentityFile ~/.ssh/[rsa_github]
User git
一切进展顺利。
答案1
您只需要为每个用户创建一个 ssh 私钥和公钥,以便通过 ssh 与 github 进行身份验证。
无需为您拥有的每个存储库创建新的 ssh 密钥(仅每次登录时)