Working with CVS
The following steps assume you are working on a UNIX platform. If you are working on a Windows platforms, the steps are the same, but the examples apply only to UNIX.
Procedure
Installing CVS on UNIX
- Download the installer from http://www.cvsnt.com/cvspro/?lang=EN&complete=1.
- Set
PATH
to execute CVS commands on your shell. For example, assuming CVS is installed under/usr/local/bin
:setenv PATH /usr/local/bin:$PATH
- Set
CVSROOT
:setenv CVSROOT /home/corp/
<user>
/rcs/cvs - Initialize CVS. This creates the CVS repository under
CVSROOT
:cvs init
Importing a Project Into a CVS Repository
Procedure
- In TIBCO Designer, create a project.
- Save the project. For example:
/home/corp/
<user>
/cvstest01
. - Close TIBCO Designer.
- Using a shell, navigate to the project directory. For example:
cd /home/corp/
<user>
/cvstest01 - Execute the following commands:
cvs import -m "comment"
<project name>
vendor release
cvs import -m "cvstest for designer" cvstest01 vendor release - Check-out the project to local directory.
- Using a shell, navigate into the CVS local copy directory. For example:
/home/corp/
<user>
/cvs_local
.cd /home/corp/
<user>
/cvs_local
cvs -r checkout -P<project name>
cvs -r checkout -P cvstest01 - Now you are ready to open the CVS project in TIBCO Designer.