annotate CVSROOT/loginfo @ 0:ffd2df307e81

initial checkin
author root
date Thu, 17 Jan 2002 12:05:03 +0100
parents
children 075eab24154d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
ffd2df307e81 initial checkin
root
parents:
diff changeset
1 # The "loginfo" file controls where "cvs commit" log information
ffd2df307e81 initial checkin
root
parents:
diff changeset
2 # is sent. The first entry on a line is a regular expression which must match
ffd2df307e81 initial checkin
root
parents:
diff changeset
3 # the directory that the change is being made to, relative to the
ffd2df307e81 initial checkin
root
parents:
diff changeset
4 # $CVSROOT. If a match is found, then the remainder of the line is a filter
ffd2df307e81 initial checkin
root
parents:
diff changeset
5 # program that should expect log information on its standard input.
ffd2df307e81 initial checkin
root
parents:
diff changeset
6 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
7 # If the repository name does not match any of the regular expressions in this
ffd2df307e81 initial checkin
root
parents:
diff changeset
8 # file, the "DEFAULT" line is used, if it is specified.
ffd2df307e81 initial checkin
root
parents:
diff changeset
9 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
10 # If the name ALL appears as a regular expression it is always used
ffd2df307e81 initial checkin
root
parents:
diff changeset
11 # in addition to the first matching regex or DEFAULT.
ffd2df307e81 initial checkin
root
parents:
diff changeset
12 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
13 # You may specify a format string as part of the
ffd2df307e81 initial checkin
root
parents:
diff changeset
14 # filter. The string is composed of a `%' followed
ffd2df307e81 initial checkin
root
parents:
diff changeset
15 # by a single format character, or followed by a set of format
ffd2df307e81 initial checkin
root
parents:
diff changeset
16 # characters surrounded by `{' and `}' as separators. The format
ffd2df307e81 initial checkin
root
parents:
diff changeset
17 # characters are:
ffd2df307e81 initial checkin
root
parents:
diff changeset
18 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
19 # s = file name
ffd2df307e81 initial checkin
root
parents:
diff changeset
20 # V = old version number (pre-checkin)
ffd2df307e81 initial checkin
root
parents:
diff changeset
21 # v = new version number (post-checkin)
ffd2df307e81 initial checkin
root
parents:
diff changeset
22 #
ffd2df307e81 initial checkin
root
parents:
diff changeset
23 # For example:
ffd2df307e81 initial checkin
root
parents:
diff changeset
24 #DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog
ffd2df307e81 initial checkin
root
parents:
diff changeset
25 # or
ffd2df307e81 initial checkin
root
parents:
diff changeset
26 #DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog