为 Git 添加SSH key时出现“Could not open a connection to your authentication agent”错误的第二种解决方法

在给 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

发表评论

电子邮件地址不会被公开。 必填项已用*标注