General command for git

Note: This article will keep update ~~ 😀

Delete local git tag

git tag | xargs git tag -d

Delete remote git tag

git tag -l | xargs -n 1 git push --delete origin

Reference: https://stackoverflow.com/questions/19542301/delete-all-tags-from-a-git-repository