Is there a way on the CVS command line to list all files associated with a tag?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
About the closest you’ll be able to get is with this:
cvs -q log -R -N -S -rTAGNAME
This works against local copy, it doesn’t pull from the server.
EDIT:
As Ken mentioned, a slight variation will make it pull from the server, but in this situation you need to specify the module name too.
cvs -q rlog -R -N -S -rTAGNAME MODULENAME