Tag files from within a sandbox
cvs tag tagname [filenames]
Tag files from anywhere using a tag name or revision
cvs rtag -r [existing_tagname|revision] new_tagname project
Tag files from anywhere using a date or time
cvs rtag -D [date|time] tagname project
Move a tag from within a sandbox
cvs tag -F tagname [filenames]
Move a tag from anywhere using a tag name or revision
cvs rtag -r [tagname_at_location|revision] -F tagname_to_move project
Move a tag from anywhere using a date or time
cvs rtag -D [date|time] -F tagname project
Delete a tag from within a sandbox
cvs tag -d tagname [filenames]
Delete a tag from anywhere
cvs rtag -d tagname project
The -r [tagname|revision] option accepts a tag name or a revision, but cannot have both tag name and revision. The -D [date|time] option accepts a date, a time, or both date and time.
Top |