I Love SVN now, and anyone not using version control on an OS project should seriously look at it

Code: Select all
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GCS/M/MU d- s:- a--- C++++ UL P L++ E--- W+++ N+ w++ M- V+ PS+ Y+ PE- PGP t-- 5- X R- tv b DI-- D+ G e h! r++ y+
------END GEEK CODE BLOCK------
It all boils down to personal preference, I've used CVS in the past sure... but I started using SVN and it's amazingly easy to learn and use.senaus wrote:I use CVS, but i hear more people raving about SVN. Is it much better?
I used both. SVN is not "much better", as it has not been designed to be so. It has been designed to fix the major problems with CVS, while being largely similar in concept and use.senaus wrote:I use CVS, but i hear more people raving about SVN. Is it much better?
Code: Select all
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GCS/M/MU d- s:- a--- C++++ UL P L++ E--- W+++ N+ w++ M- V+ PS+ Y+ PE- PGP t-- 5- X R- tv b DI-- D+ G e h! r++ y+
------END GEEK CODE BLOCK------
Tags and branches are considerably simple, When you tag a release you're simply making a copy and then placing it in another location.hckr83 wrote:plus doing the basics is very simple, still don't understand things like tags, but I haven't had a lot of use for them yet either..
I don't see why.. It's essentially just a glorified copy event..hckr83 wrote:I basically new what tags and branches were, but TortuiseSVN would always give some mysterious error when I tried to make one..
actually SVN doesn't know branches or tags. These are nothing but cheap copies of a directory (ie. a cheap copy of a specific revision of /trunk to ie. /tags/version-1.0). The advantage is that it's a very cheap operation as the files aren't actually copied but rather referenced, so that the file history doesn't get lost. Of course if you make changes to copied files/directories those changes don't affect the original source (which is basically the concept of branches).hckr83 wrote:still don't understand things like tags, but I haven't had a lot of use for them yet either..