|
Chris PeBenito |
14a7a6 |
# The "loginfo" file controls where "cvs commit" log information
|
|
Chris PeBenito |
14a7a6 |
# is sent. The first entry on a line is a regular expression which must match
|
|
Chris PeBenito |
14a7a6 |
# the directory that the change is being made to, relative to the
|
|
Chris PeBenito |
14a7a6 |
# $CVSROOT. If a match is found, then the remainder of the line is a filter
|
|
Chris PeBenito |
14a7a6 |
# program that should expect log information on its standard input.
|
|
Chris PeBenito |
14a7a6 |
#
|
|
Chris PeBenito |
14a7a6 |
# If the repository name does not match any of the regular expressions in this
|
|
Chris PeBenito |
14a7a6 |
# file, the "DEFAULT" line is used, if it is specified.
|
|
Chris PeBenito |
14a7a6 |
#
|
|
Chris PeBenito |
14a7a6 |
# If the name ALL appears as a regular expression it is always used
|
|
Chris PeBenito |
14a7a6 |
# in addition to the first matching regex or DEFAULT.
|
|
Chris PeBenito |
14a7a6 |
#
|
|
Chris PeBenito |
14a7a6 |
# You may specify a format string as part of the
|
|
Chris PeBenito |
14a7a6 |
# filter. The string is composed of a `%' followed
|
|
Chris PeBenito |
14a7a6 |
# by a single format character, or followed by a set of format
|
|
Chris PeBenito |
14a7a6 |
# characters surrounded by `{' and `}' as separators. The format
|
|
Chris PeBenito |
14a7a6 |
# characters are:
|
|
Chris PeBenito |
14a7a6 |
#
|
|
Chris PeBenito |
14a7a6 |
# s = file name
|
|
Chris PeBenito |
14a7a6 |
# V = old version number (pre-checkin)
|
|
Chris PeBenito |
14a7a6 |
# v = new version number (post-checkin)
|
|
Chris PeBenito |
14a7a6 |
# t = tag or branch name
|
|
Chris PeBenito |
14a7a6 |
#
|
|
Chris PeBenito |
14a7a6 |
# For example:
|
|
Chris PeBenito |
14a7a6 |
#DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog
|
|
Chris PeBenito |
14a7a6 |
# or
|
|
Chris PeBenito |
14a7a6 |
#DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog
|