Mac SSH Key 添加问题
Mac的SSH Key在重启后不会自动重新加载。可以通过如下方式实现自动加载。 在~/.ssh/目录下创建config文件 Host [HostName] UseKeychain yes AddKeysToAgent yes IdentityFile ~/.ssh/[ssh pem] 运行ssh-add -K ~/.ssh/[ssh pem]加载SSH Key。 可以运行ssh-add -l查看是否增加成功。
Mac的SSH Key在重启后不会自动重新加载。可以通过如下方式实现自动加载。 在~/.ssh/目录下创建config文件 Host [HostName] UseKeychain yes AddKeysToAgent yes IdentityFile ~/.ssh/[ssh pem] 运行ssh-add -K ~/.ssh/[ssh pem]加载SSH Key。 可以运行ssh-add -l查看是否增加成功。