Skip to content

Instantly share code, notes, and snippets.

View KevinRohn's full-sized avatar
🏃‍♂️

KevinRohn KevinRohn

🏃‍♂️
View GitHub Profile
@KevinRohn
KevinRohn / remove-remote-git-tags.txt
Last active June 7, 2021 09:59 — forked from okunishinishi/Remove all git tags
Delete all git remote tags #commands
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d