I'm installing a Windows server (2012) with Git (msysgit). The SSH connection between server and client works perfect but I can't clone a git folder to the client.
On the server is a clean --bare git folder ready, initialized with git init
I've updated the path variable to recognize the git executables using CMD and the path setting in system variables:
Set PATH=%PATH%;” C:\Program files\Git\bin; C:\Program Files\Git\mingw64\libexec\git-core;C:\Program Files\Git\cmd”
I'm trying to connect by using Git Extensions on the client with the ssh url:
ssh:\\[email protected]\Documents\DemoProject
I'm not sure what's wrong here. Can anyone help me? Do I need to grand a service or user acces to some files or directories?
