How to query CVS for "what have I committed to module M branch B in the last D days?"
How to query CVS for "what have I committed to module M branch B in the last D days?"
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.
精彩评论