Community technical support mailing list was retired 2010 and replaced with a professional technical support team. For assistance please contact: Pre-sales Technical support via email to sales@march-hare.com.
> how can i identify those files in the repository that have > been changed since i took my copy? "cvs status" gives you the status of a file, or all files recursively if no filename is given. But the output is quite verbose, so I used to have a batch file that did (from memory) cvs status | grep ^File | grep -v Up-to-date but nowadays it's much easier: cvs status -q Hope this helps, Pascal