error: src refspec test does not match any.

我在本地创建了新分支test并提交到github上
错误信息如下:

error: src refspec test does not match any.
error: failed to push some refs to 'https://github.com/itbsl/admin.git'

错误的原因是远程并没有test分支,我们需要将在本地创建分支的信息推送到github上

git push origin HEAD -u

可以到github看一下

原文地址:https://www.cnblogs.com/itbsl/p/11212806.html

时间: 2024-11-11 14:28:34

error: src refspec test does not match any.的相关文章

Git:错误:error:src refspec master does not match any

新建立了一个远程仓库,想着把项目放上去.于是在项目目录上: git init 然后就添加远程库 git remote add origin xxxx.git 然后就想push: git push -u origin master 结果提示错误: error:src refspec master does not match any 百度下,原来是说我本地没有提交任何东西,本地版本库为空, 空目录不能提交 (只进行了init, 没有add和commit). 解决: 添加:git add -A 提交

本地Git仓库和远程仓库的创建和关联及github上传(git push)时出现error: src refspec master does not match any解决办法

github上传项目方法: 在你的电脑上装好git Git Bash Here 本地Git仓库和远程仓库的创建及关联大致流程是: 1.初始化这个本地的文件夹为一个Git可以管理的仓库 git init 注意:Git会自动为我们创建唯一一个master分支我们能够发现在当前目录下多了一个.git的目录,这个目录是Git来跟踪管理版本库的,千万不要手动修改这个目录里面的文件,不然改乱了,就把Git仓库给破坏了. 2.将本地的仓库和远程的仓库进行关联 git remote add origin [em

error: src refspec master does not match any.

执行下面的命令,git push 时候出错: git push origin master 出现如下错误: error: src refspec master does not match any. error: failed to push some refs to '[email protected]:********' 原因: 本地仓库为空 解决办法: git add somefile git commit -m "comment" 原文地址:https://www.cnblog

【github问题】error: src refspec master does not match any解决方法|please tell me who you are

http://www.open-open.com/lib/view/open1366080269265.html这个先记录一下省得以后再找 我这里要解决的问题根本是:please tell me who you are.出现问题原因:在本地创建了一个文件后,在github上创建了另一个,我需要将他们连接起来, git remote add origin '地址',这里会出现问题,使用下面2,3步解决,不是使用clone下来的需要add origin地址进行连接 1git init2.git co

解决:github上传时出现error: src refspec master does not match any

原因分析 引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 解决方法 touch README git add README git commit -m 'first commit' git push origin master

git报错error: src refspec refs/heads/master does not match any.

$ git pusherror: src refspec refs/heads/master does not match any.error: failed to push some refs 出错解决方案: 首先先试试注释 1.本地git仓库目录下为空 2.本地仓库add后未commit 3.git init错误 解决: 1.控制面板打开文件夹选项  打开隐藏文件和文件夹显示 2.到本地仓库目录下查看是否有.git文件夹--无 则git init 3.看.git文件夹下是否有之前提交的文件-

使用 Git 报错 error: src refspec master matches more than one.

今天在使用 Git push 代码时遇到一个报错: error: src refspec master matches more than one. error: failed to push some refs to '[email protected]:yn/enh.git' 出现这个错误是因为有一个与当前提交分支同名的标签 查看标签列表: git tag 删除这个标签: git tag -d <tag-name> 再次 push 就 ok 了

[git常见问题]error: src refspec matches more than one.

今天加班试图push代码的时候,报出了如下错误: 出现这个错误之前,是在远程服务器上创建了一个tag v2.1.1,同时clone的服务器代码指定的分支也是branch v2.1.1,本地用git tag命令可以查看分支: 在本地删除多余的tag标签: 再次push, Everything thing is OK! [git常见问题]error: src refspec matches more than one.

error: src refspec XXX matches more than one

error: dst refspec v1.0 matches more than one. error: failed to push some refs to '' 错误原因是 branch名和tag名有相同的,在执行git push origin :branchName时,就会报上面的错 删除branch: git branch -r -d origin/branch-name //只能使用这个命令来删除branch,下面的命令不可以.因为同样是因为有 matches more than