git fatal: branch ‘master‘ does not exist

Posted 凯小默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git fatal: branch ‘master‘ does not exist相关的知识,希望对你有一定的参考价值。

问题重现

  1. 先在一个空文件夹里右击,然后点击 git bash here

在这里插入图片描述

  1. 输入下面命令

git init

在这里插入图片描述

  1. 我们假设要关联一个远程分支 https://gitee.com/kaimo313/webgl-demo.git

执行下面命令

git remote add origin https://gitee.com/kaimo313/webgl-demo.git

在这里插入图片描述

  1. 再执行拉取代码命令
git pull

不出意外就会报下面的提示

在这里插入图片描述

  1. 输入提示的命令
git branch --set-upstream-to=origin/master master

然后就会提示出来这个问题 fatal: branch 'master' does not exist

在这里插入图片描述

原因

出现这个问题原因就是本地没有 master 分支导致的。

输入 git branch -a。发现只有远程分支。

在这里插入图片描述

解决

解决方式就是:输入 git checkout master

在这里插入图片描述

出现 Already on 'master' ,Branch 'master' set up to track remote branch 'master' from 'origin'.,说明已经切换到 master 上。

再次输入 git branch -a。发现已经有本地分支

在这里插入图片描述

在用 git branch -avvv 查看

  • 【a:查看所有分支】
  • 【v:每个分支的最后一个提交(commit)】
  • 【vv:本地分支与远程分支的关联关系】

在这里插入图片描述

以上是关于git fatal: branch ‘master‘ does not exist的主要内容,如果未能解决你的问题,请参考以下文章

Git fatal: refusing to merge unrelated histories

git branch

git 拉取远程分支报错(fatal: '' is not a commit and a branch '' cannot be created from it)(示例

Git拉取分支报错(fatal:‘XXX' is not a commit and a branch ‘XXX' cannot be created from it)

Git master branch has no upstream branch的解决

Git 出现Branch master set up to track remote branch master问题 与忽略文件上传