In Git, how can I delete multiple tags before pushing?
I know how to do it with one tag at a time. Not sure if it\'s possible to do multiple.
It will delete all matching tag patterns.
//Delete remote: git push -d origin $(git tag -l "tag_prefix*") // Delete local: git tag -d $(git tag -l "tag_prefix*") // Examples: git tag -d $(git tag -l "v1.0*") git push -d origin $(git tag -l "*v3.[2]*-beta*")