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

前端 未结 5 1840
故里飘歌
故里飘歌 2021-02-12 14:54

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

5条回答
  •  被撕碎了的回忆
    2021-02-12 15:07

    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

提交回复
热议问题