Visual Studio connect to GIT server -
we following error trying connect git server inside our company network. proxy configuration config file added , works. same errors appears when try establish connection github.com
error: libgit2. category = net (error). response status code not indicate success: 417 (expectation failed)
finally found solution on own. editing “devenv.exe.config” file , adding "expect100continue" parameter solves problem.
<settings> <ipv6 enabled="true"/> <servicepointmanager expect100continue="false"/> </settings>
connecting github , our local gitserver work fine now.
Comments
Post a Comment