In all the Git tutorials I\'ve read they say that you can do:
git init
git add .
git commit
When I do that I get a big text file opened up.
The text file that is being opened is a summary of the current commit operation. The git commit drops you into this file so the you can add a commit message at the top of the file. Once you've added your message just save and exit from this file.
There is also a "-m msg" switch on this command that allows you to add the commit message on the command line.