2021年12月1日星期三

Could not open a connection to your authentication agent

添加ssh key时出错:

$ ssh-add ~/.ssh/id_rsa
Could not open a connection to your authentication agent.

解决:

$ eval `ssh-agent -s`
$ ssh-add ~/.ssh/id_rsa

参考:

Could not open a connection to your authentication agent

没有评论:

发表评论

Android logcat

Log等级 Android log 等级在 android/log.h 中定义如下: typedef   enum   android_LogPriority {    /** For internal use only. */ ANDROID_LOG_UNKNOWN =...