Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete local tag fails

Tags:

mercurial

tags

I'm trying to delete a local tag in a Mercurial repo using:

hg tag --remove tag-name

and I get the following message:

abort: tag 'last-working' is not a global tag

Is there a way to delete local tags?

like image 813
pgpb.padilla Avatar asked Sep 07 '25 08:09

pgpb.padilla


1 Answers

Sure:

hg tag --remove --local tag-name
like image 175
C2H5OH Avatar answered Sep 11 '25 01:09

C2H5OH