First check out the old tag:
cvs co -r <tag_name> <module_name>
Then tell CVS to go inside that folder/module that you checked out and update files to HEAD...but ONLY those files, not the entire repository.
Now if you want to retag just these files, use the instructions for "Tagging Individual Files" in an earlier post.
find -type f ! -path '*CVS*' | sort | xargs -n1 cvs update -A
I read this.
ReplyDelete