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' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -