Skip to content

Instantly share code, notes, and snippets.

View Qamar4P's full-sized avatar
🤠
The master of basics

Qamar Abbas Qamar4P

🤠
The master of basics
View GitHub Profile
@Qamar4P
Qamar4P / Remove all git tags
Created August 8, 2019 06:03 — 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
@Qamar4P
Qamar4P / Remove all git tags
Created August 8, 2019 06:03 — 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