标签:问题 master 用户名 git 自动 conf ssh公钥 问题解决 推送
问题描述:把本地库里的内容推送到远程库的时候出错?
git push -u origin master
fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists;
这个问题当时真是困扰了我很久,后来看了别人的博客豁然开朗了。
git config --global user.name "yourname"
git config --global user.email "your@email.com"
这里我觉得邮箱地址最好与你GitHub上的邮箱地址一致。
ssh在C盘里面,直接搜索即可。(删除之后不要关闭,还会用到)
$ ssh-keygen -t rsa -C "your@email.com"(请填你设置的邮箱地址)
然后一直回车即可。
然后系统会自动在.ssh文件夹下生成两个文件,id_rsa和id_rsa.pub,用记事本打开id_rsa.pub将全部的内容复制
在key中将刚刚复制的粘贴进去
点击add ssh key
重新输入git命令
csdn地址:https://www.liaoxuefeng.com/wiki/896043488029600/898732864121440
git:Please make sure you have the correct access rights and the repository exists.问题解决
标签:问题 master 用户名 git 自动 conf ssh公钥 问题解决 推送
原文地址:https://www.cnblogs.com/XF-eng/p/14086132.html