Oh, I suppose I should mention about committing/pushing to the server.
First of all, to answer your question about your real name going to the server, you can change the values it uses for this by doing the following:
git config --global user.name "YourNameHere"
git config --global user.email "your@email.here"
These can be set to arbitrary values and take effect for all usage of git on the system. You can test it out by trying a commit and you will be able to see from git log that it's recording these values (as an fyi, these settings get saved in ~/.gitconfig).
As far as pushing to gitorious goes, git doesn't have a special protocol, it just uses SSH. If you register in gitorious you need to generate an SSH keypair. You can use ssh-keygen -t rsa -C your@name.here (the email can be something fake, just something to identify you and hopefully matching the user.email you set with git config), this applies to people who are using Git on windows as well (do it from within the git shell). Don't set a passphrase (unless you want to type it everytime you do a push, since it's making an ssh connection). Then upload your ~/.ssh/id_key.pub to gitorious. But yeah, you're right, it uses SSH public key auth to authenticate you for pushing to the server.
Gitorious does some magic behind the scenes to check whether you actually have write access to a given repository and if not, it will send back an error when you try to push. In this regard the access control is probably a bit more granular than it was for SVN (I think you could only set permissions for the entire repository).
The other trick here, is that you have to push using the SSH url in gitorious (this won't show up unless you have write access to a repository, and the URL for pushing defaults to whatever you used to clone the repository). If you cloned using the git:// url instead, it's fairly straight forward to change that:
git remote rm origin
git remote add origin git@git.outpost2.net:project-name/repo-name.git
and then you can git push like usual.