I am investigating trying to get my team at work to move from CVS to SVN, in my opinion SVN has many advantages over CVS however moving a legacy system and team from something that has been used for 10+ years will prove difficult.
I'm trying to second guess questions that will be asked when I present why we should move to SVN and was wondering if you could fill in appropriate answers (or even why SVN is worse at this).
I'll also try to explain the way we work at the moment and would appreciate it if you could say what will have to change!
Currently we have to main sections of our CVS, HEAD (Production) and testing (TEST
)
Code from TEST is built nightly and if the build succeeds is tagged with a new CVS tag. Once we are happy with it we pull that tag from TEST into HEAD and then make a final build and deploy to users.
We extensively use the CVS $Header$ feature, which often causes collisions when merging with code (especially reverse merge).
As CVS deals with files individually rolling back a broken commit (or even seeing the files changed) proves very difficult (file by file).
On check-in CVS tends to think you've touched lots of files that you haven't gone near
In summary, how will changing to SVN affect us?
Thanks for your time,