Skip to content

Instantly share code, notes, and snippets.

View tanzeelrana's full-sized avatar
🏠
Working from home

Tanzeel tanzeelrana

🏠
Working from home
View GitHub Profile
@tanzeelrana
tanzeelrana / ssh.sh
Created November 28, 2022 00:13 — forked from zircote/ssh.sh
Convert a AWS PEM into a ssh pub key
ssh-keygen -y -f private_key1.pem > public_key1.pub
@tanzeelrana
tanzeelrana / Remove all git tags
Created March 8, 2019 20:14 — 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