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

后端 未结 1 991
盖世英雄少女心
盖世英雄少女心 2020-12-10 23:56

I am using following command

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

Here, mypassword has \'@\

相关标签:
1条回答
  • 2020-12-11 00:20

    Try and percent encode your special character:

    git config --global http.proxy http://myusername:mypa%40ssword@myproxyserver:8080
                                                         ^^^
                                                         %40=@
    
    0 讨论(0)
提交回复
热议问题