在工作中尝试在Visual Studio 2017中的团队基础服务上同步团队项目时遇到此错误
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
有什么想法吗?
答案 0 :(得分:0)
您没有输入有效的URI方案,例如http://
。尝试将http://
放在代理地址的前面。
答案 1 :(得分:0)
检查是否已设置Windows环境变量HTTP_PROXY和HTTPS_PROXY。如果已设置,请确保将模式(http和https)写入其中。如果您修改了这些变量,请重新启动终端,然后重试。
我遇到了同样的问题,并且以这种方式解决了。