How to Delete a Tagged Version

2001-02-27 Thread pamgoetz
I want to delete a tagged version and retag another version with the same name. I accidently committed and tagged some changes that were wrong. I want to remove that version, make the correct changes, and commit and tag this version under the same tag name. How do I do this? _

Re: How to Delete a Tagged Version

2001-02-27 Thread Rob Helmer
You can use "cvs tag -F tagname filename" to Force a tag onto whatever revision of a file you have checked out, regardless of whether that file has previous revisions with that tag. This also has the effect of removing the tag from the previous revision. On Tue, Feb 27, 2001 at 06:24:22PM -

Re: How to Delete a Tagged Version

2001-02-27 Thread Larry Jones
[EMAIL PROTECTED] writes: > > I want to delete a tagged version and retag another version with the > same name. I accidently committed and tagged some changes that were > wrong. I want to remove that version, make the correct changes, and > commit and tag this version under the same tag name