root@1: # The "taginfo" file is used to control pre-tag checks. root@1: # The filter on the right is invoked with the following arguments: root@1: # root@1: # $1 -- tagname root@1: # $2 -- operation "add" for tag, "mov" for tag -F, and "del" for tag -d root@1: # $3 -- repository root@1: # $4-> file revision [file revision ...] root@1: # root@1: # A non-zero exit of the filter program will cause the tag to be aborted. root@1: # root@1: # The first entry on a line is a regular expression which is tested root@1: # against the directory that the change is being committed to, relative root@1: # to the $CVSROOT. For the first match that is found, then the remainder root@1: # of the line is the name of the filter to run. root@1: # root@1: # If the repository name does not match any of the regular expressions in this root@1: # file, the "DEFAULT" line is used, if it is specified. root@1: # root@1: # If the name "ALL" appears as a regular expression it is always used root@1: # in addition to the first matching regex or "DEFAULT".