Git注册SSH key流程

版权声明:本文为博主原创文章,博主欢迎转载借鉴,请写上链接,嘻嘻~~~ https://blog.csdn.net/yuan_jlj/article/details/82744819

1.    检查是否已经有SSH Key

  $cd ~/.ssh

如果没有密钥则不会有此文件夹,有则备份删除

2、设置git 的username 和email                    

$ git config --global user.name "weimeng"

$ git config --global user.email "[email protected]"

3、生成SSH密钥过程

$ ssh-keygen -t rsa -C “[email protected]

按3个回车,密码为空。

Your identification has been saved in /home/tekkub/.ssh/id_rsa.

Your public key has been saved in /home/tekkub/.ssh/id_rsa.pub.

The key fingerprint is:

最后得到了两个文件:id_rsa和id_rsa.pub

4.在github上添加ssh密钥

打开这 “id_rsa.pub”里面的公钥复制SSH key中

5.测试:ssh [email protected]

The authenticity of host ‘github.com (207.97.227.239)’ can’t be established.

RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.

Are you sure you want to continue connecting (yes/no)? yes

Warning: Permanently added ‘github.com,207.97.227.239′ (RSA) to the list of known hosts.

ERROR: Hi tekkub! You’ve successfully authenticated, but GitHub does not provide shell access

Connection to github.com closed.

6.开始使用github

1.获取源码:

$ git clone ssh://[email protected]:8022/fonova_dmp/dmp-restapi.git

猜你喜欢

转载自blog.csdn.net/yuan_jlj/article/details/82744819
今日推荐