Reputation: 2293
And also how do versioning can help me manage my project ?
Upvotes: 0
Views: 3056
Reputation: 51565
You create a CVS repository outside of Eclipse. Subversion and Git are newer source code version control systems you might want to consider.
A source code version control system maintains more than one version of your source code. This is useful when you want to have software versions, as well as when you want to back out a change you made to an earlier version.
As far as installation instructions, here's an online CVS manual.
Upvotes: 2