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

Posted lwjnicole

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git拉取分支报错(fatal:‘XXX' is not a commit and a branch ‘XXX' cannot be created from it)相关的知识,希望对你有一定的参考价值。

一、问题出现

1.当远程仓库分支上有一个本地仓库没有的分支时

2.本地使用git checkout命令检索这个远程分支

git checkout -b 本地分支名 远程分支名

当出现上述情况时,就会出现报错:fatal:‘XXX‘ is not a commit and a branch ‘XXX‘ cannot be created from it

二、问题原因

远程新建的分支没有更新到本地。实际上,git仓库分为本地仓库和远程仓库,我们用checkout命令是从本地仓库中找要检出的分支的。本地仓库只有在进行网络请求时才会跟远程仓库交互,比如fetch命令。

三、问题解决

更新远程仓库数据到本地,可以使用两个命令:

1.fetch命令

git fetch origin

2.update命令

git remote update origin --prune

最后我们再使用git checkout命令即可检索出新建的分支

以上是关于Git拉取分支报错(fatal:‘XXX' is not a commit and a branch ‘XXX' cannot be created from it)的主要内容,如果未能解决你的问题,请参考以下文章

git拉取GitLab工程报错Repository not found

Git 拉取Gitee仓库报错:“fatal: unable to access ''": Failed to connect to 127.0.0.1 port 1080:

Git执行"git rebase -i HEAD~xxx"报错:git rebase fatal: Needed a single revision invalid upst

git拉取GitLab工程报错Repository not found

git切换分支报错:error: pathspec 'origin/XXX' did not match any file(s) known to git

git常见问题fatal: Not a valid object name: 'master'.