Creating a local empty repository
- status
$ mkdir app
$ cd app
$ git init
Initialized empty Git repository in /c/work/app/.git/
$ git status
On branch master
Initial commit
nothing to commit (create/copy files and use "git add" to track)
This will create a directory called .git and put some files there.