"Ravish A.S" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > Hi, > I am newbie to cvs. I have created two branches from main trunk. Then I > tried to labeled the branches separately. it worked fine. Then later i have > added new files to each branches. This time I tried to label branches , but > it didn't label the newly added files to branches, it did for exist files. > Anybody know this problem or am I doing any mistake ?.
Yes. I suspect greatly that you are using the ``cvs tag -r <revision>'' command to label your files. Do not do this! Use the rtag command. The cvs tag command only applies tags to those files which are visible in your working copy. So if you tell it to tag some other revision of those files in another branch, it won't apply the tag to the files which exist in that branch, but do not exist in your working copy. Consider the exact commands you are using, and look up their semantics in the CVS reference manual written by Per Cederqvist. You will likely discover the source of your error. _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs
