Reputation: 4815
I am myself a subversion user, and overall very happy with it. However, there are times that I need to work on code stored on a CVS repository that is beyond my control (ie, some open source projects). I've heard lots of horror stories of why CVS is really flawed, but nothing very concrete and would like to avoid getting trapped on such errors myself :-)
I'd like to know if you can enumerate all the gotchas and potential problems that may surge while accessing and working with code bases living on CVS, and how to deal with them.
Upvotes: 10
Views: 600
Reputation: 1304
You can't move a directory - you have to manually move it in the repository.
Upvotes: 2
Reputation: 19220
There's some dir-related weirdness in CVS.
Another thing you'll miss is an analog of "svn revert" working w/o an access to the server.
Upvotes: 3
Reputation: 115897
Upvotes: 12
Reputation: 34367
Merging and branching have been difficult points for CVS's in general.
Upvotes: 1