-1

I know and use this in command line https://username:password@example.com. But, what can i do when my password has a @? Something like passw@rd.

I forgot how do that, many unsuccessful attempts.

  • 1
    Have a look at https://stackoverflow.com/questions/6172719/escape-character-in-git-proxy-password – Crypth Apr 08 '20 at 14:06
  • 1
    Does this answer your question? [Escape @ character in git proxy password](https://stackoverflow.com/questions/6172719/escape-character-in-git-proxy-password) – phd Apr 08 '20 at 14:40

1 Answers1

0

The best option would be to try using the URL Encoded value of the @ symbol (%40). If you're passing the password in the proxy . e.g.:

http.proxy=http://userId:pwd%40123@ipaddress:port

Hope this helps you out.

rehman
  • 21
  • 1
  • 6