当前位置:   article > 正文

linux上为git配置SSH Key_git linux key

git linux key

linux上使用git clone git@github.com:命令克隆github库时,提示

Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct access rights and the repository exists.

可能是没有配置SSH Key,配置步骤如下:
1、查看是否生成过SSH Key
输入cat ~/.ssh/id_rsa.pub 进行查看。
一般以ssh-rsa 开头,以邮箱为结尾。如
在这里插入图片描述
若存在,再次生成会覆盖旧公钥
2、生成SSH Key
输入ssh-keygen -t rsa -C “xxxxx@xxx.com”
xxxxx@xxx.com填写邮箱账号。
3、在github上完成设置
再次输入cat ~/.ssh/id_rsa.pub 查看并复制刚生成的ssh key。
在github的设置里找到SSH and GPG keys,设置任意title并粘贴Key。
在这里插入图片描述
4、验证是否成功
输入ssh -T git@github.com进行验证。
5、克隆github库
最后即可使用git clone git@github.com:命令克隆github的库了,如
git clone git@github.com:XXX/XXX.git

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/695277
推荐阅读
相关标签
  

闽ICP备14008679号