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 

source : escape @ character in git proxy password


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -