Index: trunk/CVSROOT/checkoutlist |
— | — | @@ -0,0 +1,13 @@ |
| 2 | +# The "checkoutlist" file is used to support additional version controlled |
| 3 | +# administrative files in $CVSROOT/CVSROOT, such as template files. |
| 4 | +# |
| 5 | +# The first entry on a line is a filename which will be checked out from |
| 6 | +# the corresponding RCS file in the $CVSROOT/CVSROOT directory. |
| 7 | +# The remainder of the line is an error message to use if the file cannot |
| 8 | +# be checked out. |
| 9 | +# |
| 10 | +# File format: |
| 11 | +# |
| 12 | +# [<whitespace>]<filename><whitespace><error message><end-of-line> |
| 13 | +# |
| 14 | +# comment lines begin with '#' |
Property changes on: trunk/CVSROOT/checkoutlist |
___________________________________________________________________ |
Added: svn:keywords |
1 | 15 | + Author Date Id Revision |
Added: svn:eol-style |
2 | 16 | + native |
Index: trunk/CVSROOT/notify |
— | — | @@ -0,0 +1,12 @@ |
| 2 | +# The "notify" file controls where notifications from watches set by |
| 3 | +# "cvs watch add" or "cvs edit" are sent. The first entry on a line is |
| 4 | +# a regular expression which is tested against the directory that the |
| 5 | +# change is being made to, relative to the $CVSROOT. If it matches, |
| 6 | +# then the remainder of the line is a filter program that should contain |
| 7 | +# one occurrence of %s for the user to notify, and information on its |
| 8 | +# standard input. |
| 9 | +# |
| 10 | +# "ALL" or "DEFAULT" can be used in place of the regular expression. |
| 11 | +# |
| 12 | +# For example: |
| 13 | +#ALL mail %s -s "CVS notification" |
Property changes on: trunk/CVSROOT/notify |
___________________________________________________________________ |
Added: svn:keywords |
1 | 14 | + Author Date Id Revision |
Added: svn:eol-style |
2 | 15 | + native |
Index: trunk/CVSROOT/loginfo |
— | — | @@ -0,0 +1,26 @@ |
| 2 | +# The "loginfo" file controls where "cvs commit" log information |
| 3 | +# is sent. The first entry on a line is a regular expression which must match |
| 4 | +# the directory that the change is being made to, relative to the |
| 5 | +# $CVSROOT. If a match is found, then the remainder of the line is a filter |
| 6 | +# program that should expect log information on its standard input. |
| 7 | +# |
| 8 | +# If the repository name does not match any of the regular expressions in this |
| 9 | +# file, the "DEFAULT" line is used, if it is specified. |
| 10 | +# |
| 11 | +# If the name ALL appears as a regular expression it is always used |
| 12 | +# in addition to the first matching regex or DEFAULT. |
| 13 | +# |
| 14 | +# You may specify a format string as part of the |
| 15 | +# filter. The string is composed of a `%' followed |
| 16 | +# by a single format character, or followed by a set of format |
| 17 | +# characters surrounded by `{' and `}' as separators. The format |
| 18 | +# characters are: |
| 19 | +# |
| 20 | +# s = file name |
| 21 | +# V = old version number (pre-checkin) |
| 22 | +# v = new version number (post-checkin) |
| 23 | +# |
| 24 | +# For example: |
| 25 | +#DEFAULT (echo ""; id; echo %s; date; cat) >> $CVSROOT/CVSROOT/commitlog |
| 26 | +# or |
| 27 | +#DEFAULT (echo ""; id; echo %{sVv}; date; cat) >> $CVSROOT/CVSROOT/commitlog |
Property changes on: trunk/CVSROOT/loginfo |
___________________________________________________________________ |
Added: svn:keywords |
1 | 28 | + Author Date Id Revision |
Added: svn:eol-style |
2 | 29 | + native |