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

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -