git 批量删除tag
本地
<pre>
git tag | grep "v" |xargs git tag -d
</pre>
其中grep "v"应该是你自己想要的匹配
远程
<pre>
git show-ref --tag | grep "v1.0"| awk '{print $2}'|xargs git push origin --delete
</pre>
其中,grep "v1.0"应该是你想要的匹配
git 批量删除tag
<pre>
git tag | grep "v" |xargs git tag -d
</pre>
其中grep "v"应该是你自己想要的匹配
<pre>
git show-ref --tag | grep "v1.0"| awk '{print $2}'|xargs git push origin --delete
</pre>
其中,grep "v1.0"应该是你想要的匹配
本文标题:git 批量删除tag
本文链接:https://www.haomeiwen.com/subject/rcoprttx.html
网友评论