I have a Windows Server that is accessible through SSH, on the server, I went to C:\Users\ftptest and ran git init --bare MyRepo.git
On the client, I'm attempting to clone the new repo with git clone ftptest@my-server:MyRepo.git but I get the error:
fatal: ''MyRepo.git'' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. I'm guessing there's something wrong with my URL and Git is looking for the repo in the wrong directory. What would be the correct command to clone the repo?
FWIW, my server is already accessible through SSH (I'm using OpenSSH), when I issue the git clone it performs authorization and rejects wrong passwords.