I am trying to clone a repo to my laptop from my main PC. Both systems use windows 7 (I know, go to linux). They also both have the latest msysgit running.
On the PC I have bitvise server for SSH, and have the client version running on the laptop. Git is setup as an env path in windows, and I can log into the PC from the laptop via SSH (keys have been shared, homepath set etc.)
When I type the following into msysgit on the laptop, I get an error:
git clone username@192.168.1.5:XABC
fatal: ''XABC'' does not appear to be a git repository
now if I type ssh username@192.168.1.5 ls XABC/.git
I get the expected
COMMIT_EDITMSG
FETCH_HEAD
HEAD
etc.
What am I doing wrong?