通过ssh连接github

Posted 莽莽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过ssh连接github相关的知识,希望对你有一定的参考价值。

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是否设置成功。

Hi xxx! You‘ve successfully authenticated, but GitHub does not provide shell access. #出现词句话,说明设置成功。

 

以上是关于通过ssh连接github的主要内容,如果未能解决你的问题,请参考以下文章

无法通过 ssh OS X 连接 github

通过ssh连接github

通过SSH去连接 github 和bitbucket

ubuntu如何通过ssh连接github

使用ssh连接gitHub

本地git连接远程github