Sorry to trouble you with this question, but I hope
some of you gurus already know the answer.

When I use the following command I get every file
listed in the module regardless of whether or not I
changed them, which is bad,

        cvs log -b -d ">2003-03-18 02:40" -w"rjocham"
jboss-3.0.6_tomcat-4.1.18

When I add the -S option I only get the files I
modified listed, which is good. However, I also only
get those in the root directory of the module (i.e.
not in the subdirectories), which is bad.

        cvs log -b -d ">2003-03-18 02:40" -S -w"rjocham"
jboss-3.0.6_tomcat-4.1.18

Any ideas how I can list just the files I changed
after a certain date for all the subdirectories
(recursive) of the module?

Thanks,
Ralph

***************************************************

I do it like this.
cvs -Q status | grep 'Status: L'

This give me a list of Locally Modified files. I cd up or
down the source tree as far as I like. I realize that
does not address your dates. That is not a problem for
me as I typically have maybe 4 or 5 modified files out
of several hundred. Then I commit them or abandon them
before things get too out of hand :-) One can obviously grep
on all sorts of things N, instead of L gets you files that
others have changed. There are probably other ways as well.
mw-


_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to