博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
error: src refspec XXX matches more than one
阅读量:5924 次
发布时间:2019-06-19

本文共 307 字,大约阅读时间需要 1 分钟。

 

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 onegit push origin :branch-name

 

删除tag:

git tag -d tagName

 

转载地址:http://josvx.baihongyu.com/

你可能感兴趣的文章
windows server 2008 R2 AD 域之---IE安全设置
查看>>
PC 上的 LVM 灾难修复
查看>>
TimeRecordUtil 获取当前时间与开始时间差打印log
查看>>
Java8使用stream将Map转成List的方法
查看>>
我的友情链接
查看>>
关于加密的那些事
查看>>
ngnix-介绍
查看>>
java性能分析工具
查看>>
glut教程 键盘输入
查看>>
Unity性能优化-总篇
查看>>
Open××× 原理与实战文章汇总
查看>>
Windows与Linux双系统安装
查看>>
PHP中stdClass
查看>>
gulp常用插件及其使用(更新2016-05-19)
查看>>
资源分享-开发工具-Java2ObjC
查看>>
把windows下的testlink迁移到linux下
查看>>
HTML文字版面的编辑2
查看>>
fackebook的用户体验分析
查看>>
Perseus-BERT——业内性能极致优化的BERT训练方案
查看>>
【ZooKeeper Notes 16】避免羊群效应(Herd Effect)
查看>>