Creating a local empty repository
initstatus
$ 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 main
Initial commit
nothing to commit (create/copy files and use "git add" to track)