The file -t flag) and the other when the file is
checked out of the repository (this is denoted with the
-f flag)
The
The basic format of the file
wildcard [option value][option value]...
where option is one of
-f from cvs filter value: path tofilter
-t to cvs filter value: path to filter
-m update methodology value: MERGE or COPY
and value is a single-quote delimited value.
*.nib -f 'unwrap %s' -t 'wrap %s %s' -m 'COPY'
*.c -t 'indent %s %s'
The above example of a .nib
should be filtered with the COPY
methodology should be used when updating the files in
the repository (that is no merging should be performed).
The last example line says that all files that end with
a *.c should be filtered with *.c file is done when
it is checked out of the repository.
The -t filter is called with two arguments,
the first is the name of the file/directory to filter
and the second is the pathname to where the resulting
filtered file should be placed.
The -f filter is called with one argument,
which is the name of the file to filter from. The end
result of this filter will be a file in the users directory
that they can work on as they normally would.