From: Steve C. <ste...@ya...> - 2004-01-10 06:58:26
|
Whenever I run 'cvs update' I always get a long list of '?' status files like ? docs/matplotlib.afm.html ? docs/matplotlib.artist.html ... ? htdocs/backends.html ? htdocs/classdocs.html ... ? htdocs/screenshots/axes_demo_large.png ? htdocs/screenshots/axes_demo_small.png ... ? matplotlib/__init__.pyc ? matplotlib/_matlab_helpers.pyc ... CVS uses the '?' label for files in my working directory which do not correspond to anything in the source repository. These files, for example the .pyc files, are not source files, they are generated from the source files by the build process. CVS by default knows that it should ignore files such as *.o and *.exe. It can be told to ignore additional files in a directory by creating the file .cvsignore in the relevant directory and listing the files to ignore (either by name or using wildcards). So to remove the warnings listed above, you could set up the files docs/.cvsignore: *.html htdocs/.cvsignore: *.html htdocs/screenshots/.cvsignore: *.png matplotlib/.cvsignore: *.pyc -- Steve |