Annotation of CVSROOT/posttag, revision 1.1
1.1 ! cvs 1: # The "posttag" file is called after the "tag" command finishes
! 2: # processing a directory.
! 3: #
! 4: # If any format strings are present in the filter, they will be replaced
! 5: # as follows:
! 6: # %b = branch mode = "?" (delete ops - unknown) | "T" (branch)
! 7: # | "N" (not branch)
! 8: # %o = operation = "add" | "mov" | "del"
! 9: # %c = canonical name of the command being executed
! 10: # %I = unique (randomly generated) commit ID
! 11: # %R = the name of the referrer, if any, otherwise the value NONE
! 12: # %p = path relative to repository
! 13: # %r = repository (path portion of $CVSROOT)
! 14: # %t = tagname
! 15: # %{sVv} = attribute list = file name, old version tag will be deleted
! 16: # from, new version tag will be added to (or deleted from, but
! 17: # this feature is deprecated. When either old or new revision is
! 18: # unknown, doesn't exist, or isn't applicable, the string "NONE"
! 19: # will be placed on the command line.
! 20: #
! 21: # Note that %{sVv} is a list operator and not all elements are necessary.
! 22: # Thus %{sV} is a legal format string, but will only be replaced with file
! 23: # name and old revision. it also generates multiple arguments for each file
! 24: # being operated upon. i.e. if two files, file1 & file2, are having a tag
! 25: # moved from version 1.1 to version 1.1.2.9, %{sVv} will generate the
! 26: # following six arguments in this order:
! 27: # file1, 1.1, 1.1.2.9, file2, 1.1, 1.1.2.9.
! 28: #
! 29: # The first entry on a line is a regular expression which is tested
! 30: # against the directory that the change is being committed to, relative
! 31: # to the $CVSROOT. For the first match that is found, then the remainder
! 32: # of the line is the name of the filter to run.
! 33: #
! 34: # If the repository name does not match any of the regular expressions in this
! 35: # file, the "DEFAULT" line is used, if it is specified.
! 36: #
! 37: # If the name "ALL" appears as a regular expression it is always used
! 38: # in addition to the first matching regex or "DEFAULT".
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>