如何设置GitHub的公钥
Posted 十木禾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置GitHub的公钥相关的知识,希望对你有一定的参考价值。
如果使用http
方式push
代码的时候,就会每次都要输入用户名和密码,而使用SSH
的方式就不会
如果你的prigin
是http
的,可以使用如下命令经行修改
在项目路径下执行
git remote rm origin
git remote add origin git@github.com:XXX/XXXXX.git
git push origin
这时候我们使用git clone git@github.com:XXX/XXXXX.git
的时候发现可能还是不行,会报如下的错误
Permission denied (publickey). fatal: Could not read from remote repository.
这个时候就需要去配置一下公钥了,这个过程非常简单,请不要害怕
右击git.bash.
,然后输入
ssh-keygen -t rsa -C "登陆GitHub的邮箱"
然后一直回车,最后会看到上面的日志中有显示公钥生成的地址
如我本地的为
C:\\Users\\weixu\\.ssh
打开到该目录,使用记事本打开id_rsa.pub
,然后复制好里面的内容
打开自己的github
,点击头像选择Settings
,然后选择左侧的SSH and GPG keys
然后我们在右边的界面SSH keys
下点击new SSH keys
在Key
区域输入我们上面复制的公钥,点击Add SSH Key
即可
以上就完成了整个公钥配置的过程,这个时候我们就可以使用git clone git@github.com:XXX/XXXXX.git
来clone
代码了
- 完成上需操作
2.然后再ternimal下执行命令:
ssh -v git@github.com
最后两句会出现:
No more authentication methods to try.
Permission denied (publickey).
3.这时候再在ternimal下输入:
ssh-agent -s
然后会提示类似的信息:
SSH_AUTH_SOCK=/tmp/ssh-GTpABX1a05qH/agent.404; export SSH_AUTH_SOCK;
SSH_AGENT_PID=13144; export SSH_AGENT_PID;
echo Agent pid 13144;
4.接着再输入:
ssh-add ~/.ssh/id_rsa
这时候应该会提示:
Identity added: …(这里是一些ssh key文件路径的信息)
(注意)如果出现错误提示:Could not open a connection to your authentication agent.
请执行命令:ssh-agent bash
后继续执行命令 ssh-add ~/.ssh/id_rsa,这时候一般没问题啦。
5.最后一步,验证Key
在ternimal下输入命令:
ssh -T git@github.com
提示:Hi xxx! You’ve successfully authenticated, but GitHub does not provide shell access.
以上是关于如何设置GitHub的公钥的主要内容,如果未能解决你的问题,请参考以下文章