首页 > 代码库 > fatal: Could not read from remote repository.的解决办法
fatal: Could not read from remote repository.的解决办法
1、 git remote –v查看远端地址或者查看配置 git config –list
2、 git status
3、 git add .
git status
git commit -m “本次要提交的概要信息”
git push origin master把本地文件推送到远程仓库
4、git remote set-url origin 你的远端地址
设置远端仓库地址
git push origin master出现以下情况:
5、解决办法:删除远端当前仓库和当当前key,然后重新生成key,
ssh-keygen -t rsa -C 1398499734@qq.com连敲两次回车键
6、会在本地C:\Users\你的用户名.ssh生成文件夹,里面有id_rsa和id_rsa.pub两个文件
然后复制id_rsa.pub文件里面的内容,到https://github.com/settings/keys新建一个,
7、然后设置远程地址:(上面新建的)
git remote add origin_new 新的地址
git remote –v查看
git push origin_new master重新推送
下面是设置用户名
Git config –global user.name “用户名”
git config –global user.email 邮箱地址
fatal: Could not read from remote repository.的解决办法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。