Are there any CLI commands that can be used to get a list of Tags that have been created on a branch or head of a module within a specified time frame?
What I briefly ne
If you have the history function enabled, you can execute the following command:
cvs history -a -T
It will give you some lines like this, giving you date+time, user, module and tagname of each tagging operation:
T 2011-04-02 07:55 +0000 ralph mylib [testtag:A]
For more information check the cvsbook on history