• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Using CVS in eclipse??

 
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

How to configure CVS in the eclipse??

What is to be given in Host field??
What is to be given in Repository Path.Is there a specific name pattren for that path & where this path should be in the filesystem??

What is this connection type??

Please help me learn this thing!!
 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We use the following configuration:

Connection type: pserver
userid: your userid
password: your password
host: is the name of the machine on the network where CVS server is installed
repository path: the path to the specific CVS repository you care about

use default port: selected
use the repository idenfication string as the label: selected

Server Encoding: Other = Cp1252


You can connect to CVS by opeining the CVS perspective and righ clicking in the "CVS Repositories" space.

Then select New-->Repository Location


You will then be presented with a dialog...fill it out according to the imfo above.
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What you need to fill in depends, of course, on what CVS server you want to connect to. Do you already have a CVS server running?
 
Jignesh Gohel
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Thanks for the replies.

What you need to fill in depends, of course, on what CVS server you want to connect to. Do you already have a CVS server running?



No i dont have any CVS server running currently.I just want to start learning about this .I have just started working in Eclipse. Currently we are using visual source safe.So i thought if i am using eclispe then why dont i learn how to use CVS.

Is a CVS server any special thing.Do i need to have any special configurations for that??
Kindly tell me about this : How to configure the server??
Suppose i want to set up it on my localhost is it possible??
 
Ilja Preuss
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, you can set it up on your local machine. You can find the download and instructions at http://www.nongnu.org/cvs/

As an aside, recently many people switch from CVS to SVN, which you might also want to take a look at: http://subversion.tigris.org/
 
Ranch Hand
Posts: 341
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Kinda late answer but I hope it will still be helpful. If you are using Visual Source Safe (VSS), you don NOT need to use CVS.

They both do similar things. They are both source code management systems. In most places people talk about cvs becuase it is open source (free) and widely used. For VSS, there is an eclipse plugin. Just do a google search on eclipse vss plugin. Once that plugin is installed and configured, you can check in, check out etc. from eclipse.

Let me know if you need more help
 
reply
    Bookmark Topic Watch Topic
  • New Topic