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

摘要:
拉动分支的命令:gitcheckout-bxxx-static-19origin/xxx-statc-19,其中xxx-static-19是分支名称。

问题描述
从远程git上拉取某一个分支,然后报错,拉取不了这个分支。
拉取分支的命令:

git checkout -b xxx-static-19 origin/xxx-static-19
其中xxx-static-19是分支名。

报错

fatal: 'origin/xxx-static-19' is not a commit and a branch 'xxx-static-19' cannot be created from it
解决
重新拉取数据,git pull ,然后再切回分支

免责声明:文章转载自《git 拉取远程分支报错(fatal: '' is not a commit and a branch '' cannot be created from it)》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇浅尝装饰器和AOPSAML在SSO中的应用下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

超详细简单小白安装GIT教程

首先找到下载网站https://git-scm.com/官网:下载页面 本教程安装的版本选择安装页面,这里默认为C盘组件安装页面:这里把Windows Explorer integration全选上,这里是让鼠标右键出现安装页面Use a TrueType font in all console windows:在windows控制页面中使用TrueTyp...

Failed to execute 'toDataURL' on 'HTMLCanvasElement,在canvas.toDataURL()执行时候报错解决方案

  添加跨域条件   crossorigin="anonymous" 【Redirect at origin 'http://xxx.xx.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin'...

supervisor的command执行两条命令

如下supervisor的进程的comand配置参数只能写一个命令 1、要执行多条命令,可以写个sh文件包含多条命令,然后sh -x xxxx.sh,但这样又多了一个文件, 2、把所有命令放在字符串,然后用eval来执行,这样在shell窗口可以执行,但放在supervisor报找不到eval命令。比如: command = eval "python -u...

Jenkins环境,构建时报错 ERROR: Error fetching remote repo 'origin'

构建项目时报错 ERROR: Error fetching remote repo 'origin',主要原因就是用户凭据设置错误导致的,下面是报错时的截图。            用户凭据添加和使用步骤: 0.前提:   1) 服务器安装git;   2) git与github关联   3) Jenkins设置了git路径。    1.去服务查看私钥:...

下载android的linux内核的方法

1、安装git android的linux内核可以从http://android.git.kernel.org/下载,但下载需要使用git,windows版的git可以从http://code.google.com/p/msysgit/下载,有完全安装版和便携版(portable)两个版本可供选择,不常用git的话选portable版就可以了。 下载por...

Git:一台电脑上配置两个git账户

如何在一台电脑上配置两个git账户,现在云端仓库很多,有开源中国的 gitee.com 微软的 github.com 还有 gitlab.com 和 bitbucket.org 等等,下面是具体步骤 以 gitee 和 bitbucket 为例,分别对应了两个账户 one@gmail.com 和 two@outlook.com,本文章的命令均用git自带的...