> From: Arcin Bozkurt [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 10, 2001 6:35 AM
> Will the following command update the tag Dev13 to point to > the newest versions in the repository?? (It should work only > for the files that were tagged with this tagname before) > > cvs rtag -F Dev13 > (no module name is specified, cause i am in that projects > working copy) > Or is the module name required? Yes, the module name is required with rtag. I don't think you can do this with one command. cvs rtag -F Dev13 modulename would tag everything, and cvs rtag -r Dev13 -F Dev13 modulename would only "move" the tag to exactly the same revision. cvs co -d foo -r Dev13 modulename cvs tag -r HEAD -F Dev13 foo would move the tag to the head revision of every file which already had the tag in it. Jerry _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
