开发者

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

开发者 https://www.devze.com 2023-01-15 18:50 出处:网络
开发者_StackOverflow社区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:
开发者_StackOverflow社区

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消