sshkey访问github

2022/4/26 23:44:34

本文主要是介绍sshkey访问github,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

   1.生成git的对称密钥对

ssh-keygen -t rsa -C "xxx@gamil.com"

~/.ssh 下生成的文件为:
github
github.pub
2.配置密钥
 
将github.pub公钥配置到github
https://github.com/settings/keys
3.配置本地私钥路径
>> cd ~/.ssh
新建config文件

```

Host github.com

HostName github.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/github

如果配置了gitee,则添加:

Host gitee.com

HostName gitee.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/gitee

```

4:检查配置是否成功

 ssh -T git@github.com

可能要输入生成密钥对时设置的密码

Enter passphrase for key '~/.ssh/github':

 

 

 




这篇关于sshkey访问github的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程