How to query CVS for "what have I committed to module M branch B in the last D days?"
views:
13answers:
1
+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
2010-09-07 22:10:18
Thanks, this worked: cvs rlog -S -t -d ">1 weeks ago" APACHEHTTPD
rob
2010-09-13 19:28:54
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
2010-09-13 19:32:18