Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

delete CVS tag that was created earlier

Tags:

eclipse

cvs

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?

like image 782
Mohan Avatar asked Oct 28 '11 11:10

Mohan


1 Answers

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>
like image 88
Tim Dawson Avatar answered Oct 21 '22 14:10

Tim Dawson