I suggest you read up on git workflow, either in http://progit.org or in http://sethrobertson.github.com/GitBestPractices
As seanhodges suggested, by default when each developer clones the upstream repo, they will have a private version of the branches, eg master. They can do whatever they want locally. When they are ready to share with other people, they push/pull/etc. There is no particular reason why they need to be on a branch named "dev1". If other people want to look at their stuff, they can by adding the dev's repo as a remote and then they can look at dev1/master.
If you want to do it they way you suggested, you of course can. Just git checkout $USER. People find it more useful to make feature branches (a branch for a particular feature) than user branches.
If you are talking access control, then sure gitolite is probably the best bet as mentioned in the other answer, but really there is no reason why you need to bother except in the most formal circumstances. If a user screws something up, you can always blow those changes away or restore to an earlier state.