Using Git on Windows not working when the password contain '@' Symbol
Asked Answered
H

1

1

I am using following command

git config --global http.proxy http://myusername:mypassword@myproxyserver:8080

Here, mypassword has '@' symbol so it is not working How can I resolve the issue

Hardecanute answered 4/2, 2016 at 8:5 Comment(0)
R
1

Try and percent encode your special character:

git config --global http.proxy http://myusername:mypa%40ssword@myproxyserver:8080
                                                     ^^^
                                                     %40=@
Rammer answered 4/2, 2016 at 8:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.