在工作时,我在visual studio 2017中的team foundation serer上尝试同步团队项目时遇到此错误
Git failed with a fatal error.
NotSupportedException encountered.
The ServicePointManager does not support proxies with the net4bsl.bsl.co.uk scheme.
cannot spawn /c/program files (x86)/microsoft visual studio/2017/community/common7/ide/commonextensions/microsoft/teamfoundation/team explorer/Git/mingw32/libexec/git-core/git-askpass.exe: No such file or directory
could not read Username for 'https://ams-british-steel.visualstudio.com': terminal prompts disabled
这是我配置为我的代理
git config --global http.proxy net4bsl.bsl.co.uk:8080
有什么想法吗?
您没有输入有效的URI方案,例如http://
。尝试将http://
放在代理地址的前面。
检查是否已设置Windows环境变量HTTP_PROXY和HTTPS_PROXY。如果设置了它们,请确保在那里写入架构(http和https(。如果修改了该变量,请重新启动终端,然后重试。
我遇到了同样的问题,我用这种方式解决了它。