Focused on delivering choice, investment protection and flexibility to organizations with valuable COBOL assets
Veryant Knowledge Base
Home > All Categories
> isCOBOL IDE > How do I set up a CVS repository and access it from Eclipse and the isCOBOL IDE?
How do I set up a CVS repository and access it from Eclipse and the isCOBOL IDE?
Question:
I'd like to set up a CVS repository and access it from Eclipse/isCOBOL IDE to use the Team development and project sharing features. Can you point me in the right direction?
I had a directory named test_project with some files in it so I ran: cvs import test_project initial start
And to set up the client/server functionality I edited the cvspserver file:
sudo vi /etc/xinetd.d/cvspserver
and added the following lines:
service cvspserver
{
port = 2401
socket_type = stream
protocol = tcp
user = root
wait = no
type = UNLISTED
server = /usr/bin/cvs
server_args = -f --allow-root /usr/local/cvsroot pserver
disable = no
}
set CVSROOT=:pserver:bagside@bagvapp:/usr/local/cvsroot
cvs login
cvs co test_project
In the isCOBOL IDE and/or Eclipse:
Open the "CVS Repository Exploring" Perspective
Right-click and add a new CVS Repository
Put the following in the Host field:
:pserver:bagside@bagvapp:/usr/local/cvsroot
and it automatically populates the other fields.
The above assumes that you have created a group called "cvsusers" and you have added each of the users to this group. If you already have a "devel" group with the correct users then you could change "cvsusers" to "devel" in the above commands.
Authored
by: Veryant Support
This question has been viewed 37590 times so far.
Click
Here to View all the questions in isCOBOL IDE
category.
File Attachments
There are no attachment file(s) related to this question.
User Comments
There are no user comments for this question. Be the first to post a comment. Click Here