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 [email protected]: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

你可能感兴趣的:(Git)