每次我重启电脑时,我都必须通过 ssh 添加我的 ssh 密钥。我已经在 github 上添加了 ssh 密钥。有人知道如何修复它吗?谢谢。
答案1
您可以在 ssh 配置中创建别名。例如:
Host example.github.com
HostName github.com
IdentityFile ~/.ssh/id_rsa_example
确保您的 git 远程引用 ssh 别名“example.github.com”。 “IdentityFile”指令应指向您计划存储私钥的路径。 这会告诉 ssh 将哪个密钥与别名关联。