source: trunk/CVSROOT/cvswrappers@ 1036

Last change on this file since 1036 was 71, checked in by ktk, 26 years ago

Added again some new file extensions

File size: 1.4 KB
RevLine 
[2]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#
[29]13# wildcard [option value][option value]...
[2]14#
15# where option is one of
[29]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
[2]20#
21# and value is a single-quote delimited value.
22# For example:
23#*.gif -k 'b'
[38]24
25# binaries (should normally not be added to the archive )
[29]26*.exe -k 'b'
27*.sys -k 'b'
28*.obj -k 'b'
[38]29*.res -l 'b'
30
31# diverse others
[29]32*.zip -k 'b'
33*.etc -k 'b'
[71]34*.pch -k 'b'
35*.err -k 'b'
36*.map -k 'b'
[38]37
38# icon and mouse pointer formats
39*.ico -k 'b'
40*.ptr -k 'b'
41*.cur -k 'b'
42*.ani -k 'b'
43*.and -k 'b'
44
45# font files
46*.ttf -k 'b'
47*.fnt -k 'b'
48
49# bitmap formats
50*.bmp -k 'b'
51*.gif -k 'b'
52*.jpg -k 'b'
53*.jpeg -k 'b'
54*.pcx -k 'b'
55*.tga -k 'b'
56*.tif -k 'b'
57*.tiff -k 'b'
58*.dib -k 'b'
59*.mng -k 'b'
60*.png -k 'b'
61*.xpm -k 'b'
62
63# presentation formats
64*.pdf -k 'b'
65*.ps -k 'b'
66
67
68# video and audio files
[71]69*.mov -k 'b'
70*.avi -k 'b'
71*.mpg -k 'b'
72*.mp2 -k 'b'
73*.mp3 -k 'b'
[38]74
Note: See TracBrowser for help on using the repository browser.