Git server hosting using the git: // protocol, unable to set SO_KEEPALIVE, no such file or directory

I am on Windows using GIT version 2.12.2. I executed the following command in git bash shell:

$ git daemon --reuseaddr --verbose --informative-errors --base-path=/c/ /c/

In another git bash shell, on the same machine that was serving, I tried to click git://<host>/foo.gitfrom the test one git://<host>/foo.gitand got:

[2236] unable to set SO_KEEPALIVE on socket: No such file or directory

What can I do to SO_KEEPALIVEbe able to successfully install?

+8
source share
1 answer

Looking at https://github.com/git-for-windows/git/issues/304, this is a known issue that has not yet been resolved.

+1
source

Source: https://habr.com/ru/post/1680151/


All Articles