How to get a list of tags created in CVS repository?

Salman A. Kagzi picture Salman A. Kagzi · May 30, 2011 · Viewed 31.8k times · Source

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 need is a list of Tags and the date when they were created. Given following parameters

  1. Module Name
  2. Branch Name (or :: HEAD)
  3. Start Date
  4. End Date

Answer

Thomas picture Thomas · Aug 15, 2013

I just learned:

cvs status -v

Lists all tags and braches for each and any file together with the revision it belongs to.

You could work from there ...