Introduce yourself to git
$ git config --global user.name "Peter J Lord"
$ git config --global user.email "me@plord.me.uk"
Now initialise your project by telling git to monitor your project
$ git init
Now add all the files to it
$ git add .
Finally commit the files to git
$ git commit