|
|
Subject: How to mark all files in a directory deprecated?
From: Dennis Jones
Date: 1/21/2007 2:40:29 AM
"Fred" <itfred@cdw.com> wrote in message
news:L8CdnRBgbcllHC_YnZ2dnUVZ_qisnZ2d@giganews.com...
>I have numerous source files in a directory that are no longer
> current. The branch wasn't moved or anything, just the files
> copied to a new tree. I don't want to delete the old files
> yet, as I've just assumed responsibility for this application.
> But anyway, I now have about 20 files in a path, lets say
> my/src/files. Can I enter comments about ALL of these files
> indicating they are no longer the working files?
If they're in the repository, there's no reason not to delete them -- you
can always get them back. You could even give them a symbolic tag to make
retrieving them even easier:
cvs tag Deprecated_01_20_07 my/src/files/*
then
cvs -f rm my/src/files/*
If you ever need to get them back, you can do an update using the tag:
cvs up -rDeprecated_01_20_07 my/src/files
The above is untested, so you should decide if it sounds like what you want
and then check the syntax before doing it.
- Dennis
_______________________________________________
info-cvs mailing list
info-cvs@nongnu.org
http://lists.nongnu.org/mailman/listinfo/info-cvs
|