tags:

views:

13

answers:

1

How to query CVS for "what have I committed to module M branch B in the last D days?"

+1  A: 

This works for me with a test repository:

# your args:  B=branch tag
#             |      D=days
#             |      |       M=module
#             |      |       |
cvs rlog -S -rB -d'>-D days' M

You would probably want to filter or reformat the report - depends what you're looking for.

Based on Cederqvist.

martin clayton
Thanks, this worked: cvs rlog -S -t -d ">1 weeks ago" APACHEHTTPD
rob
One more thing. It logged extraneous statements that would be nice to filter out, ie:cvs rlog: Logging APACHEHTTPD/Deploycvs rlog: Logging APACHEHTTPD/Deploy/bincvs rlog: Logging APACHEHTTPD/Deploy/bin/iconv...cvs rlog: Logging APACHEHTTPD/Deploy/bin/zipThere were no changes to those directories, and the information is not helpful.
rob