Discussion:
Getting a list of files from CVS according to date
mrguy123
2009-08-26 14:39:21 UTC
Permalink
Hi,
I am trying to get a list of files from CVS after a certain date.
For example, all the files that were added after 08/08/2009. I just need the
names of the files, not the content.
I am not trying to update my sandbox, I want to compare the files to a
different list I get from a data base to make sure no files are missing.
Most of the documentation I read about CVS explains how to
update/refresh/commit files and not just get their names.
Does anybody know of a quick and easy way to do so?

Thanks in advance
Guy Naamati (mrguy123)

--A truth that's told in bad intent beats all the lies you can invent
--
View this message in context: http://www.nabble.com/Getting-a-list-of-files-from-CVS-according-to-date-tp25151393p25151393.html
Sent from the Gnu - Cvs - Info mailing list archive at Nabble.com.
Larry Jones
2009-08-27 00:56:58 UTC
Permalink
Post by mrguy123
I am trying to get a list of files from CVS after a certain date.
For example, all the files that were added after 08/08/2009. I just need the
names of the files, not the content.
The following command will list all the files with some kind of log
message on or after that date:

cvs rlog -RS -d'2009-08-08' module
--
Larry Jones

I always have to help Dad establish the proper context. -- Calvin
Loading...