git 批量删除 tag

本地

git tag -d v1.9.0

git tag | grep "v1.9" |xargs git tag -d

远端

git push origin --delete tag v1.9.0

git show-ref --tag | awk '/v1\.9\.[0-9]{1}[0-9]{0,}$/ {print ":" $2}' | xargs git push origin

参考

  • https://www.cnblogs.com/joshua317/p/11089060.html

如果觉得我的文章对您有用,请在支付宝公益平台找个项目捐点钱。 @Victor Sep 6, 2022

奉献爱心