info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Listing all symbolic tags in repository


From: Greg A. Woods
Subject: Re: Listing all symbolic tags in repository
Date: Sun, 3 Mar 2002 14:36:01 -0500 (EST)

[ On Sunday, March 3, 2002 at 17:31:55 (-0400), Alec wrote: ]
> Subject: Listing all symbolic tags in repository
> 
> How does an end-user get a list of all symbolic tags
> in a CVS :pserver: repository ?

        cvs -q -d :pserver:address@hidden:/repostiory rlog -h directory | \
                grep '^ ' | \           # that's a <TAB> after the "^"
                awk -F: '{print $1}' | \
                sort -u

You'll want a '-l' in with the '-h' if you really only mean the files in
the directory, not all the files in all the subdirectories.
 
-- 
                                                                Greg A. Woods

+1 416 218-0098;  <address@hidden>;  <address@hidden>;  <address@hidden>
Planix, Inc. <address@hidden>; VE3TCP; Secrets of the Weird <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]