Skip to main content

Posts

Showing posts from January, 2010

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>