Page 1 of 1

Changing from CVS to Subversion (SVN)

Posted: Wed Mar 28, 2007 6:11 am
by JeffM
We are changing the project source control system from CVS over to Subversion.

The CVS system is now read only, and will remain so.

to access the current source code you must use the source forge SVN system.

info on how to access the SVN system can be found here.
http://sourceforge.net/svn/?group_id=3248

Posted: Thu Mar 29, 2007 12:20 am
by dango
phooie. now everything will be sorted by versions and updates.

Posted: Thu Mar 29, 2007 12:24 am
by JeffM
what exactly do you mean?

Posted: Thu Mar 29, 2007 12:31 am
by dango
subversion tracks everything and sorts things by revisions and different releases, right? Or am I wrong?

Posted: Thu Mar 29, 2007 12:38 am
by JeffM
I think you are mistaken or confused on what a Version Control System does.

SVN provides the data in a similar manner to CVS, there is a trunk folder that contains what was CVS head. There is a branches folder that contains all the older branch tags. In that way it's actually easier to get older tags as it's just a variation of the URL.

SVN nor CVS does any sort of sorting, they simply keep a history of all changes to files.

SVN does keep a repository version number that is incremented with each commit, but that does not affect the branches, files, or any kind of "sort" that I am aware of. For each file there is a history of changes, and what revision the each changes were commited in. This lets you see all the changes that were committed at together, since they have same revision number.