Local tag deletion fails

I am trying to remove a local tag in a Mercurial repository 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 remove local tags?

+3
source share
1 answer

Of course:

hg tag --remove --local tag-name
+3
source

All Articles