git致命:'development'似乎不是git存储库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git致命:'development'似乎不是git存储库相关的知识,希望对你有一定的参考价值。

我创建了一个新分支并检入该分支:

git checkout -b new

然后检查远程分支:

git branch -r

因此在列表中:

origin/development

我正在尝试将代码从该分支拉到新分支中,但出现错误:

fatal: 'development' does not appear to be a git repository
fatal: Could not read from remote repository.

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

我正在使用git pull开发

还我检查了.git / config并设置了远程源:

[remote "origin"]
    url = https://gitlab.com/myCompany/front.git

为什么我不能从远程分支中提取代码?

答案

我正在使用git pull development

这是不正确的。 git pull接受两个选项,主要是remotebranchgit pull development将告诉git从development远程和master分支(默认分支为master)中拉出]

告诉git从origin/developmment中获取最新代码,请执行git pull origin development

以上是关于git致命:'development'似乎不是git存储库的主要内容,如果未能解决你的问题,请参考以下文章

致命错误:ZF2 beta5骨架应用程序找不到类'Locale'

来自自制软件的mac os上的git:致命:无法访问

Rails - 致命:数据库“myapp_development”不存在

Git 推送:“致命的 'origin' 似乎不是 git 存储库 - 致命的无法从远程存储库读取。”

Git 克隆失败 - 致命:远程端意外挂断。致命:早期 EOF 致命:索引包失败

Git 用git status命令时,不提示Your branch is up-to-date with 'origin/master'.信息,请问如何解决?