delete CVS tag that was created earlier

Mohan picture Mohan · Oct 28, 2011 · Viewed 11.4k times · Source

Please let me know how to delete a CVS tag which was already created from eclipse.

If the tag is removed, can a new tag be created with same name?

Answer

Tim Dawson picture Tim Dawson · Dec 15, 2011

I don't think there's a way from Eclipse...you'll have to go to the command line and run:

cvs tag -d <tag> <file/directory>

or if the tagged files are no longer on your system:

cvs rtag -d <tag> <location_in_repository>