我正在执行git config --global http.proxy http://user:password@proxy.example:3128
以在GIT中配置代理。问题是我的用户包含@
。
用户: myuser @ test
密码: 1234
如果我跑:git config --global http.proxy http://myuser@test:1234@proxy.example:3128
我收到错误:Couldn't resolve proxy 'test'
我该如何解决?感谢。