I installed Git via Cygwin on Windows Server. It works out very well. However there's a small issue that when I clone a repo use the command as following:
$git clone git@myserver:project.git
I always get the following error:
fatal: '/project.git': unable to chdir or not a git archive
but if I typed in the full path then it works
$git clone git@myserver:/home/git/repositories/project.git
Did anyone here face this problem before?
Regards, TL