Just go into the directory you want to have version control for and type in:
git init
This will create an empty git repository on your hard disk. With this command
git add .
you can add all files in the directory to the git repository. And with
git commit -a -m "init"
you can commit all files to your local repository.