Skip to content

Instantly share code, notes, and snippets.

View monodeep12's full-sized avatar

Monodeep Bhattacharjee monodeep12

View GitHub Profile
@monodeep12
monodeep12 / Remove all git tags
Created June 13, 2016 04:41 — forked from okunishinishi/Remove all git tags
Delete all git remote tags
#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
0421c6c0211cefbc119577760f8e1a7ef3b845941a3cda581900432a17abab278cf6a8e33455e4ae53a7c1945fc7831dbf4ab01fc87868559dc2b5fa88b0b7a642