git使用的过程中遇到的问题--fatal: Could not read from remote repository.


问题概述:

fatal: Could not read from remote repository.

问题描述:

在本地有git仓库, 然后在github上新建了一个远程仓库,没有勾选初始化Initialize this repository with a README

按照github的提示,将本地仓库与远程仓库关联,并且使用git push 将本地仓库推送到github的远程仓库上。

git remote add origin git@github.com:cindyHua901/vue-canlender.git
git push -u origin master

修改了本地仓库的文件,使用git add . 及git commit命令将修改文件提交到本地仓库。

使用git push的时候提示如下:

fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

解决办法:使用  git push -u origin命令就可以了。。。有点玄学呢。。。

相关命令:

查看管理的远程仓库

  git remote 

删除与远程仓库的关联

  git remote rm remote_name

添加与远程仓库的关联

  git add 远程仓库的地址

推送本地分支local_branch到远程分支 remote_branch并建立关联关系

      a.远程已有remote_branch分支并且已经关联本地分支local_branch且本地已经切换到local_branch

          git push

     b.远程已有remote_branch分支但未关联本地分支local_branch且本地已经切换到local_branch

         git push -u origin/remote_branch

     c.远程没有用remote_branch分支并,本地已经切换到local_branch

        git push origin local_branch:remote_branch

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值