I have a use case to push files to git using command like:


git push https://<username>:<password>github.company.com/abcd/devrepo 
> master:master


But, if the password contains special characters like ‘@’ and ‘$’, I am 
converting it to hex code like ‘%40’ and %24.


So, the URL looks like


https://23784:abcd%40%241...@github.company.com/abcd/devrepo


I was thinking it should work since I am encoding the special character, 
but it throws 403 error everytime. This works fine for password without 
special characters where we don’t need to encode any characters.


What am I doing wrong here?

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to