Skip to main content

Posts

Showing posts with the label cvs

create Head project from branch

1) right click on branch in eclipse 2) select Team->Disconnect option 3)There is popup in which you choose   " Also delete CVS Meta-Information From the filesystem " 4)   now right click on branch and select Team->share 5) provide module name whichever you want to give  and follow the instructions

CVS on Solaris

1. To install CVS and checkout head project,it is explained in below blog http://anipossible3.blogspot.com/2008/03/solaris-discovery.html 2. To checkout branch of project ./cvs checkout -r {branchname} {projectname} 3. To update the head/branch on solaris Head : ./cvs update -d {project name} Brnach: ./cvs update -r {branchname} -d

Create New branch for Project into CVS

1) Make sure you have installed cvsnt on your machine .download it from http://march-hare.com/cvspro/ 2) Set home path of cvsnt into path environment variable of system. 3) Go to the command prompt 4) Do set CVSROOT setting set CVSROOT=:pserver:userid@<cvshost>:/<repository> 4) Then "CVS login" with your password. 5) Then this command cvs rtag -r HEAD -b <branchname> <headprojectname>