我正在使用Ubuntu 12.04,每次重启机器时,ssh-add保存的密钥标识都不见了 .

~$ ssh-add -l
The agent has no identities.

我已经在我的.ssh / config文件中添加了“IdentityFile”,就像下面指示的帖子一样,但它不起作用 .

Add private key permanently with ssh-add on Ubuntu

我的.ssh / config文件如下所示:

Host github-user-1
    HostName github.com
    IdentityFile ~/.ssh/id_rsa.git.user-1
    User git
    IdentitiesOnly yes

Host github-user-2
    HostName github.com
    IdentityFile ~/.ssh/id_rsa.git.user-2
    User git
    IdentitiesOnly yes