...
- Open the git console and navigate to the location that you want manage with git
- Type git init - this will create the git database in that directory
- Type git add * . - this will add all the files in the current directory and sub directories (recursively) the local git db, the files remain in staged state until committedÂ
- Type git commit -m <some message in single quotes> - this move the files from the staged state to commited
...