Re: [Pyobjc-dev] Directories like .lproj in CVS
Brought to you by:
ronaldoussoren
From: Just v. R. <ju...@le...> - 2003-01-07 18:57:26
|
bb...@ma... wrote: > Directories are never removable in CVS-- SF or otherwise. If you end > up with an empty directory in CVS, then use: > > cvs -q -z5 update -dP > > To update your workarea. The -dP is the important part; -d deletes > anything that has been removed from the repository and -P prunes empty > directories. In using CVS for way too many years now, I haven't run > across a situation where you wouldn't want to use '-dP' to do the > update. I have a .cvsrc file in my home dir which reads: % cat .cvsrc cvs -z9 -q update -dP Very handy: just type "cvs up" and things work as they should. Just |