ssh-keygen -t rsa -C "humingx@yeah.net"
然后确定生成成功了:
cd ~/.ssh
ls
或者
ll
//看是否存在 id_rsa 和 id_rsa.pub文件,如果存在,说明已经有SSH Key
然后复制
打开以下路径:
C:\Users\XXX\.ssh\id_rsa.pub
copy到github账户中
ssh -T git@github.com
yes
https://segmentfault.com/a/1190000002645623
参考
需要
github连接报"ssh: connect to host github.com port 22: Connection timed out"错误 - 星朝 - 博客园
写一个config文件
Host github.com User YourEmail@163.com Hostname ssh.github.com PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa Port 443