Subject: Re: CVS and current
To: None <current-users@NetBSD.ORG>
From: enami tsugutomo <enami@cv.sony.co.jp>
List: current-users
Date: 02/19/1997 16:08:53
bad@flatlin.ka.sub.org (Christoph Badura) writes:

> You also have to remove files that have been deleted by sup manually
> in your working copy of the sources, so keep logs of every sup run.

At least recent CVS can merge removal of files (and addition of files
which is deleted in past).  The point is using exact release tag
instead of specifing date. i.e:

(someday)
sup
cd src; cvs import ... NetBSD/src NetBSD NetBSD-1997Feb15
		:

(today)
sup
cd src; cvs import ... NetBSD/src NetBSD NetBSD-1997Feb17
cvs checkout -jNetBSD-1997Feb15 -jNetBSD-1997Feb17 NetBSD/src
	# removed files during Feb15 and Feb17 are marked as removed.
cd NetBSD/src; cvs commit -m 'NetBSD-current 1997Feb17 is merged'
	# commit the removal.

# yes, it requires more disk space and cpu times...:).
enami