I'm executing git config --global http.proxy http://user:password@proxy.example:3128 to configure a proxy in GIT. The problem is when my user contains an @.
User: myuser@test
Password: 1234
If I run: git config --global http.proxy http://myuser@test:1234@proxy.example:3128
I get the error: Couldn't resolve proxy 'test'
How can I solve it? Thanks.