Creating a local empty repository



$ mkdir app
$ cd app
$ git init
Initialized empty Git repository in /c/work/app/.git/

This will create a directory called .git and put some files there.


$ git status
On branch master

Initial commit

nothing to commit (create/copy files and use "git add" to track)