Thanks, that's a big help. Is there any way to foolproof in git? In SVN unless you get rid of the repository on the server directly (which most users don't have access to), everything is saved so work isn't lost (as long as you check in). According to point number 7 on: http://steveko.wordpress.com/2012/02/24/10-things-i-hate-abo...
a user can potentially blow everything away with no clear way to recover, is this something to be concerned about or can failsafes be easily built in so this doesn't happen?
You can set up a script that will auto push to a remote repo on commit, the confusion comes in with the terminology in most distributed systems commit just means tell my local source control to track the change, where as in the centralized model commit generally means move these changes to the server. Just remind them that nothing gets to the server without a push. distributed systems have serious advantages over the centralized model, specifically when it comes to getting everybody's changes merged together in a chronological order. That advantage far outweighs the learning curve. If you use Mac's I would recommend SourceTree it is a very good UI for GIT and HG.