Hi David,

This script was posted a while back.

------------------------------------------------------
-- show_tags.pl
------------------------------------------------------
#!/usr/local/bin/perl -w

my $Flag = 0;
while( <> )
{
    $Flag = 1 and next if( /symbolic names:/ );
    if( $Flag )
    {
       if( ! /^\s+(\S+):/ )
       {
          $Flag = 0;
          next;
       }
      $Tag{$1} = 1;
    }
}
map{ print "$_\n"; } (sort keys %Tag);
------------------------------------------------------

"cvs rlog <dir> | show_tags.pl" will return all the tags used in the 
directory <dir>. If <dir> is a list of all your top level directories 
then you will get all tags used in the repository.

Colm A

David Hugh-Jones wrote:

> hi all
> 
> Is there a simple way to view all the tags that have been created in a 
> repository?
> 
> David
> 
> 



_______________________________________________
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs

Reply via email to