I need a way to figure out what files were added/removed/modified in the CVS repository comparing to my local working copy, i.e. what will happen to my local copy if I run "cvs update". It is safe to assume that I don't have any uncommitted changes in my local copy.
The output of "cvs update" marks added and modified files as:
U filename
which helps, but it doesn't tell what files are deleted.
Is there an easy way to get all changed files and how they are changed? Any help would be appreciated.