I am using git version 1.7.10.4 on debian Wheezy.
I am trying to create a new repository (according to the \'manual of git-scm.com) However everytime I get this fata
git clone --bare --progress poekoe poekoe.git
That git clone only works if your current directory does contain the repo poekoe.
If your current folder is empty, then the error message makes sense.
The URLs section recommends using absolute paths:
$ git clone --bare -l /home/proj/.git /pub/scm/proj.git
The OP Bonifatiusk reports in the comments a solution depending on git version:
I found this:
git --bare init poekoe.git: this is indeed different from older versions who will init a new repo using--barewith clone.