comparison CVSROOT/cvswrappers @ 2:36c5f0ce3fbe

cvssenv: Added cvswrappers for binary files
author ktk@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 02 Jul 2001 16:38:53 +0000
parents 7bd427ab6b45
children
comparison
equal deleted inserted replaced
1:ce3ec30c0d4c 2:36c5f0ce3fbe
1 #
2 # $Id$
3 #
1 # This file affects handling of files based on their names. 4 # This file affects handling of files based on their names.
2 # 5 #
3 # The -t/-f options allow one to treat directories of files 6 # 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 7 # as a single file, or to transform a file in other ways on
5 # its way in and out of CVS. 8 # its way in and out of CVS.
8 # 11 #
9 # The -k option specifies keyword expansion (e.g. -kb for binary). 12 # The -k option specifies keyword expansion (e.g. -kb for binary).
10 # 13 #
11 # Format of wrapper file ($CVSROOT/CVSROOT/cvswrappers or .cvswrappers) 14 # Format of wrapper file ($CVSROOT/CVSROOT/cvswrappers or .cvswrappers)
12 # 15 #
13 # wildcard [option value][option value]... 16 # wildcard [option value][option value]...
14 # 17 #
15 # where option is one of 18 # where option is one of
16 # -f from cvs filter value: path to filter 19 # -f from cvs filter value: path to filter
17 # -t to cvs filter value: path to filter 20 # -t to cvs filter value: path to filter
18 # -m update methodology value: MERGE or COPY 21 # -m update methodology value: MERGE or COPY
19 # -k expansion mode value: b, o, kkv, &c 22 # -k expansion mode value: b, o, kkv, &c
20 # 23 #
21 # and value is a single-quote delimited value. 24 # and value is a single-quote delimited value.
22 # For example: 25 # For example:
23 #*.gif -k 'b' 26 #*.gif -k 'b'
27
28 # binaries (should normally not be added to the archive )
29 *.exe -k 'b'
30 *.sys -k 'b'
31 *.obj -k 'b'
32 *.res -l 'b'
33
34 # diverse others
35 *.zip -k 'b'
36 *.etc -k 'b'
37 *.pch -k 'b'
38 *.err -k 'b'
39 *.map -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
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