Eternal Embrace

About macOS ssh key

似乎因为 macOS 上没有 ssh-askpass ,在 emacs 上使用 git-clone.el 之类的就会出点问题。

下面是一些常用 ssh 命令:

1
2
3
4
5
$ ssh-keygen -p
# 更改本地密码
$ ssh-add -K
# 添加到 macOS 的 Keychain

话说我好像还没发过关于 emacs 的文? 然后你就可以歪楼了么?

然后也很想试试 atom 的样子。


Update:

因为(安全原因?) macOS Sierra 取消了 ssh 自动调用 Keychain 的功能,所以要用 config file 。

1
2
3
4
Host *
UseKeychain yes
AddKeysToAgent yes
IdentityFile ~/.ssh/id_rsa