source: trunk/CVSROOT/cvswrappers@ 8045

Last change on this file since 8045 was 7687, checked in by sandervl, 24 years ago

hlp files are binary

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
40# icon and mouse pointer formats
41*.ico -k 'b'
42*.ptr -k 'b'
43*.cur -k 'b'
44*.ani -k 'b'
45*.and -k 'b'
46
47# font files
48*.ttf -k 'b'
49*.fnt -k 'b'
50
51# bitmap formats
52*.bmp -k 'b'
53*.gif -k 'b'
54*.jpg -k 'b'
55*.jpeg -k 'b'
56*.pcx -k 'b'
57*.tga -k 'b'
58*.tif -k 'b'
59*.tiff -k 'b'
60*.dib -k 'b'
61*.mng -k 'b'
62*.png -k 'b'
63*.xpm -k 'b'
64
65# presentation formats
66*.pdf -k 'b'
67*.ps -k 'b'
68*.hlp -k 'b'
69
70
71# video and audio files
72*.mov -k 'b'
73*.avi -k 'b'
74*.mpg -k 'b'
75*.mp2 -k 'b'
76*.mp3 -k 'b'
77
Note: See TracBrowser for help on using the repository browser.