Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to delete Github Tag forever? [duplicate]

I know I can go to github.com, select my tag and then click delete, but this will only delete the Tag information not the actual Tag. So how to delete it forever?!

like image 479
Mahmoud Zalt Avatar asked Mar 06 '26 16:03

Mahmoud Zalt


1 Answers

Run this in your local git repository:

git fetch
git tag
git tag -d {tag-name}
git push origin :refs/tags/{tag-name}

Visit Github.com and refresh to see the tags have been removed.

like image 151
Mahmoud Zalt Avatar answered Mar 08 '26 08:03

Mahmoud Zalt