1.检查是否已经存在ssh key
$ cd ~/.shh$ ls
如果该目录下存在id_rsa/id_rsa.pub/known_hosts这三个文件,则已经存在ssh key 直接跳转到第3步
2.生成ssh key
$ cd ~ $ ssh ssh-keygen -t rsa -C "[email protected]"
后面3个输入不填,直接回车即可
$ cd .ssh $ ls
可以看到目录下有id_rsa(私钥)/id_rsa.pub(公钥)/known_hosts这三个文件,即生成ssh key成功
3.将key上传到github
打开https://github.com/settings/ssh
点击按钮 new SSH key
title部分自己随便取名,将id_rsa.pub(公钥)的全部内容粘贴到key部分即可
4.配置账户
$ git config --global user.name “your_username” #设置用户名 $ git config --global user.email “your_registered_github_Email” #设置邮箱地址(建议用注册giuhub的邮箱)
5.
测试ssh keys是否设置成功。
$ ssh -T [email protected]
Hi xxx! You‘ve successfully authenticated, but GitHub does not provide shell access. #出现词句话,说明设置成功。
时间: 2024-10-07 00:51:51