1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# This file affects handling of files based on their names.
#
# The -m option specifies whether CVS attempts to merge files.
#
# The -k option specifies keyword expansion (e.g. -kb for binary).
#
# Format of wrapper file ($CVSROOT/CVSROOT/cvswrappers or .cvswrappers)
#
# wildcard [option value][option value]...
#
# where option is one of
# -f from cvs filter value: path to filter
# -t to cvs filter value: path to filter
# -m update methodology value: MERGE or COPY
# -k expansion mode value: b, o, kkv, &c
#
# and value is a single-quote delimited value.
# For example:
*.jpg -k 'b'
*.gif -k 'b'
*.png -k 'b'
*.bmp -k 'b'
*.ppm -k 'b'
*.pdf -k 'b'
*.dll -k 'b'
*.exe -k 'b'
*.sys -k 'b'
*.so -k 'b'
*.a -k 'b'
*.fit -k 'b'
*.ico -k 'b'
*.cur -k 'b'
*.lib -k 'b'
*.doc -k 'b'
*.zip -k 'b'
*.ppt -k 'b'
|