I have a project on which I created a git repository:
$ cd myproject
$ git init
$ git add .
$ git commit
I the wanted to create a b
I did : git clone --bare "/GITREPOSITORIES/RepoA" "ssh://luc@EERSTENASDS119J/volume1/RepoA" Result : fatal: destination path 'ssh://luc@EERSTENASDS119J/volume1/RepoA' already exists and is not an empty directory.
The system created a directory ssh://luc@EERSTENASDS119J/volume1/RepoA in my current path.
So git clone did not interpret the URL specification. Used the workaround of Alec.