How to use Git:
Infos from this tutorial: www.kernel.org/pub/software/scm/git/docs/gittutorial.html
git config --global user.name "Your Name"
git config --global user.email your@email.com
cd your_project
git init # will create .git/
Commit:
git add . # commit does not find new files. this does.
git commit