> Thanks for this extremely length and informative reply - it's answered > all our concerns, and we may well move to git sooner rather than later > now! You're welcome. You just seemed to be under some misapprehension. Git can certainly do all the basic things that svn does, and just as easily. You'll only have to learn more because you'll want to do more. There are three big things that you'll want to get used to when coming from CVS or any other centralized version system: 1) Don't blink, you might miss it. If you're used to CVS, you might wonder whether git actually *did* anything. Commits, in particular, are instantaneous if the necessary data is cached in RAM, and it can take a while to learn to trust that everything worked. 2) Commits can be undone. It can be a bit scary the way a command like git-rebase will make a whole bunch if repository changes and then maybe get stuck with a patch conflict. You want to be comfortable undoing things, or amending commits if you're not happy with what happened. This is why novices (and I used to be one) are reassured by the existence of "git merge --no-commit", but experienced users don't see the point. With git, pushing (or asking someone else to pull) is the moment of truth. Committing has no lasting consequences. 3) Branches are your friend. CVS users think branches are a big deal and require careful thought and planning. Git users branch almost as often as CVS users commit. A typical "big change" that might be a single commit in CVS would be a branch of several commits in git. In fact, a good piece of advice is to NEVER commit directly to your trunk ("master"). Do ALL development on branches, and merge them into the trunk. I cheat on that a lot, but I also know how to fix things if I get caught becauee a quick hack is proving not so quick: add a branch reference to the tip I'm developing on and then back up the master branch to where I should have left it when I started this project. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html