Issue when configure GIT behind a proxy -
i'm executing git config --global http.proxy http://user:password@proxy.example:3128
configure proxy in git. problem when user contains @
.
user: myuser@test
password: 1234
if run: git config --global http.proxy http://myuser@test:1234@proxy.example:3128
i error: couldn't resolve proxy 'test'
how can solve it? thanks.
use encoded value of @
: %40123
like :
git config --global http.proxy http://myuser%40123test:1234@proxy.example:3128
Comments
Post a Comment