
How i can use cvs in eclipse, How i can check in and cheack out my project..?

Connecting from MyEclips to CVS repositary: Step-1: Startï? programsï? Myeclips 6.0ï? MyEclips 6.0ï? enter workspace(our chice any location)ï? ok Step-2: Click on window menuï? show viewï? otherï? expand CVS folderï? select CVS Rpositariesï? ok
Step-3: In CVS repositories window right clickï? newï? location(repository location)ï? enter the following details.
Host:
Repository path:
User:
Password:
Click on finish
(connection information displayed on repository window)
Sharing a project with repository:
Step-1:
Click on file menuï? newï? projectï? select a preï? nextï? enter project name (TestApp1)ï? ï? finishï? yes
Step-2:
Right click on project nameï? teamï? share projectï? select repository location (displayed on white space)ï? nextï? nextï? finishï? enter some comment (comment 1)ï? finish
Steps to perform check in operation:
Step-1:
Right click on project nameï? newï? classï? enter class name (demo)ï? finish
Step-2: enter some code into demo class
Public class Demo{
Public void m1()
{
}
}
And then save it (ctrl+s)
Step-3:
Right click on Demo.java at left sideï? teamï? commitï? enter commentï? finish
Steps to perform heck out operation:
ï?? CVS repository always allows modifications on a latest version of the file. So when a developer wants to update a file then before updating he has to perform check-out operation
ï?? To do check-out right click on file name (demo.java)ï? teamï? update
ï?? After modifications are one then again the developer has to check-in the repository.