source: trunk/CVSROOT/cvswrappers@ 8889

Last change on this file since 8889 was 8633, checked in by sandervl, 23 years ago

added VRY files to binary list

File size: 1.5 KB
Line 
1# This file affects handling of files based on their names.
2#
3# The -t/-f options allow one to treat directories of files
4# as a single file, or to transform a file in other ways on
5# its way in and out of CVS.
6#
7# The -m option specifies whether CVS attempts to merge files.
8#
9# The -k option specifies keyword expansion (e.g. -kb for binary).
10#
11# Format of wrapper file ($CVSROOT/CVSROOT/cvswrappers or .cvswrappers)
12#
13# wildcard [option value][option value]...
14#
15# where option is one of
16# -f from cvs filter value: path to filter
17# -t to cvs filter value: path to filter
18# -m update methodology value: MERGE or COPY
19# -k expansion mode value: b, o, kkv, &c
20#
21# and value is a single-quote delimited value.
22# For example:
23#*.gif -k 'b'
24
25# binaries (should normally not be added to the archive )
26*.exe -k 'b'
27*.dll -k 'b'
28*.sys -k 'b'
29*.obj -k 'b'
30*.res -l 'b'
31
32# diverse others
33*.zip -k 'b'
34*.etc -k 'b'
35*.pch -k 'b'
36*.err -k 'b'
37*.map -k 'b'
38*.sym -k 'b'
39*.vry -k 'b'
40
41# icon and mouse pointer formats
42*.ico -k 'b'
43*.ptr -k 'b'
44*.cur -k 'b'
45*.ani -k 'b'
46*.and -k 'b'
47
48# font files
49*.ttf -k 'b'
50*.fnt -k 'b'
51
52# bitmap formats
53*.bmp -k 'b'
54*.gif -k 'b'
55*.jpg -k 'b'
56*.jpeg -k 'b'
57*.pcx -k 'b'
58*.tga -k 'b'
59*.tif -k 'b'
60*.tiff -k 'b'
61*.dib -k 'b'
62*.mng -k 'b'
63*.png -k 'b'
64*.xpm -k 'b'
65
66# presentation formats
67*.pdf -k 'b'
68*.ps -k 'b'
69*.hlp -k 'b'
70*.inf -k 'b'
71*.fw4 -k 'b'
72
73
74# video and audio files
75*.mov -k 'b'
76*.avi -k 'b'
77*.mpg -k 'b'
78*.mp2 -k 'b'
79*.mp3 -k 'b'
80
Note: See TracBrowser for help on using the repository browser.