How to Solve Git Push Error: error: src refspec v3.3.04.1000 matches more than one

report errors:

error: src refspec v3.3.04.1000 matches more than one.

Error reporting reason: the branch name is the same as the tag name.

So delete the remote tag and push the code.


Delete local tag v3.3.04.1000

git tag -d v3.3.04.1000

Delete remote Tag v3.3.04.1000

git push origin :refs/tags/v3.3.04.1000

Read More: