Re: CVS checkout hints for the bandwidth-limited

2003-09-30 Thread Juergen Boemmels
Jeff Clites [EMAIL PROTECTED] writes: Actually, I'm pretty sure that cvs will delete local copies of file removed from the repository with just cvs update. The -dP just affects directories--the -d says to pull down and update new directories, and the -P tells it to prune (remove) empty

Re: CVS checkout hints for the bandwidth-limited

2003-09-26 Thread Leopold Toetsch
Dan Sugalski [EMAIL PROTECTED] wrote: cvs -z9 update cvs -z9 update -dP parrot to get rid of deleted files too. Filtering the output through a small script, that just does something like: if ($_ !~ /^cvs server: Updating/) { print $_; } helps to unclutter

Re: CVS checkout hints for the bandwidth-limited

2003-09-26 Thread Steve Fink
On Sep-26, Leopold Toetsch wrote: Filtering the output through a small script, that just does something like: if ($_ !~ /^cvs server: Updating/) { print $_; } helps to unclutter update results. cvs -q will suppress those lines for you.