On Monday, June 9, 2014 9:52:44 PM UTC+2, Clinton Parham wrote: > > Hello git users, > > I'm trying to run a git server on my Windows 7 workstation. I've > downloaded the Windows installer from http://git-scm.com/downloads and > I'm able to clone other repositories. > > Now I want to allow others to clone my repositories. But when testing my > setup, I get these errors (both client and server are on the same box): > > *Client side:* > > F:\git>git clone git://localhost:9419/test.git test2 > Cloning into 'test2'... > fatal: unable to access 'https://localhost:9419/test.git/': Unknown SSL > protocol error in connection to localhost:9419 > > > It strikes me as odd that it appears to clone over HTTPS, when you specified a git:// url.. To the best of my knowledge, cloning over git:// (the Git protocol) has nothing to do with HTTPS, and by extension, should not involve SSL.
Could it be that you are somehow running a HTTPS service on port 9419, and Git is falling back to use this as protocol? Check what process is using the port, kill the service, restart the daemon and try again. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
