• 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
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

cvs tool

 
Ranch Hand
Posts: 97
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can anyone tell me how cvs work in myeclipse?can any two developer at a time update the same code in cvs?is cvs allow that?
 
author & internet detective
Posts: 42056
926
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Manas,
We have a forum for tools. I'll move this for you.
 
Jeanne Boyarsky
author & internet detective
Posts: 42056
926
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Manas,
This tutorial explains the concepts of CVS nicely for Eclipse. You can find many other tutorials by searching for CVS and Eclipse.

CVS does let two people edit the same file. if there is conflict on commit, you can do a merge.
 
Rancher
Posts: 4804
7
Mac OS X VI Editor Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
CVS allows many folks to edit a project. I can't imagine working on code without something like it.

If you are just starting out, you should check out subversion (aka svn)
Its newer, free, open source, etc. and fixes some problems with CVS.

I use SVN even on projects with only one developer (me). Its too valuable and too easy to use not to make it part of your life
 
Saloon Keeper
Posts: 28420
210
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Traditionally, version control systems required one person to check out a source file, modify it and check it back in again.

This didn't work well for distributed open-source projects. People weren't on a fixed timetable, might check something out and then never do anything with it, etc. Which left it locked until an administrator manually unlocked it. Or two different people wanted to do things to it at the same time.

CVS was designed to avoid the locking issue by simply not locking. Instead, everybody's able to make mods, but if two mods are made on the same version, you either have to spin off a branch or merge the mods. Branches are for long-term diversions off the main project. Merging is what you do when there's a more short-term conflict either on the main trunk or a branch component.

SVN was designed to be a "better CVS", so it, too doesn't lock, and it, too requires a merging process to reconcile conflicting changes.
 
Ranch Hand
Posts: 186
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am using CVS from IBM RAD.Looking for good tutorial on how to use cvs commands from IBM RAD.
Any help is appreciated.

regards
sudha
 
Jeanne Boyarsky
author & internet detective
Posts: 42056
926
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sudha,
This tutorial explains CVS and Eclipse. RAD/RSA is built on Eclipse so the CVS part is the same.
 
He repaced his skull with glass. So you can see his brain. Kinda like this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic