一句话代码

# 批量删除远程tag
git tag -l|xargs git push origin --delete tag

# 批量删除本地tag
git tag -l|xargs git tag -d

标签: git, tag

添加新评论