Reputation: 4460
I have Googled a lot for SVN, GIT and CVS. Only thing that I understand that It is used for maintains of the software project that we have develop. They are used for maintains of Current and Historical versions.
I have implemented the CVS repository on my system by taking the help of this article
Now I can see the task and CVS repository inside Eclipse, but I don't know how to use my project inside the CVS. How it maintains version?
None of the link explain how to maintain any project or any small example. Can any one please help on this?
Upvotes: 0
Views: 2141
Reputation: 21851
Seems you want to understand the basics of version control system. I'd recommed you read Joel Spolsky's HgInit which teaches the basics of version control.
General steps on working with any version control system:
I'm sure others will point you to use a more Modern VCS like Mercurial/Git, if you're still interested in CVS look at these 2:
Upvotes: 3