Created
August 11, 2020 07:44
-
-
Save swuecho/71c5f8df8582a21f0560d8a5b1566cc3 to your computer and use it in GitHub Desktop.
git remove tag
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#for release in `seq 15 34`; | |
#do | |
#git push --delete origin release-v0.0.$release | |
#done | |
# git tag | head -n 10 | xargs git push --delete origin - | |
for release in `git tag`; | |
do | |
echo $release; | |
git push --delete origin $release | |
git tag -d $release | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment