概述
由于之前一直在用的机器送去修,最近换了一台新机器,在使用 git push -uorigin master命令提交时报错:
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。所以在重新配置ssh key时简单记录过程,方便以后查找。
1.右键点击git bash。
2.先检查自己电脑上的ssh key,输入cd ~/.ssh到根目录.ssh文件夹下(如果显示No such file or directory 则表明是第一次用git)。
3.ssh-keygen -t rsa -C “注册github时所用的邮箱地址”生成新的ssh key。
会出现几处需要输入的字样:
显示:
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Frank/.ssh/id_rsa):回车
/c/Users/Frank/.ssh/id_rsa already exists.
Overwrite (y/n)? y
Enter passphrase (empty for no passphrase):输入密码,作为提交项目的密钥使用,也可以直接回车密码为空,输入密码时没有输入的字样,但实际上已经输入了
Enter same passphrase again:输入密码,为空的话则不用确认,回车
4.按照红框里的路径找到id_rsa.pub文件,如果按照路径没有找到在文件夹上方“查看”勾选 “文件扩展名”和“隐藏的项目”,打不开使用右键→打开方式→记事本打开。
5.复制记事本中的内容,打开github主页,在右上角头像下拉框中选setting。
6.左侧找到SSH&GPG keys。
7.title可以随便写,将刚刚复制的内容粘贴到key中。
8.测试是否配置成功,输入ssh -T git@github.com,
中间如果要求输入,输入yes。如果出现红框中的内容,则配置成功。
参考链接:http://codewithzhangyi.com/2018/04/19/如何搭建自己的个人网站(上)/
最后
以上就是尊敬刺猬为你收集整理的配置SSH key(报错fatal: Could not read from remote repository.Please make sure you have the correct ac)的全部内容,希望文章能够帮你解决配置SSH key(报错fatal: Could not read from remote repository.Please make sure you have the correct ac)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复