在给 git 添加 ssh key 时:
$ ssh-add ~/.ssh/id_rsa
如果出现:
Could not open a connection to your authentication agent
网上提供的第一种解决办法:
eval `ssh-agent -s` ssh-add
如果第一种解决办法无法解决,可以尝试第二种:
eval $(ssh-agent) ssh-add
在给 git 添加 ssh key 时:
$ ssh-add ~/.ssh/id_rsa
如果出现:
Could not open a connection to your authentication agent
网上提供的第一种解决办法:
eval `ssh-agent -s` ssh-add
如果第一种解决办法无法解决,可以尝试第二种:
eval $(ssh-agent) ssh-add