【问题描述】
Failed with error: dst refspec 1.9.3-20100630 matches more than one.
failed to push some refs to 'git@xxxxxx.git'
【问题根源】
tag名字和分支名字一样
【解决方案】
删除本地tag:
git tag -d v20190514
删除远程tag:
git push origin :refs/tags/v20190514