SSH Key

推荐一个导航: ZDZN-专业开发者导航

生成新的SSH Key:

ssh-keygen -t rsa -C "[email protected]"命令,

其中"[email protected]"是GitHub账号。

在~/.ssh目录下有 id_rsa和 id_rsa.pub两个文件,其中id_rsa.pub文件里存放的即是公钥key。

测试是否配置成功:

ssh -T [email protected]

如下则为成功:

Hi yourname! You've successfully authenticated, but GitHub does not provide shell access.

你可能感兴趣的:(SSH Key)