Re: [git-users] Git push URL encoding issue

2015-09-03 Thread Konstantin Khomoutov
On Thu, 3 Sep 2015 10:01:01 -0700 (PDT) Bideep Bezbaruah wrote: > This is a service consumed by many users and there is a validation > requirement where every user trying to use this service, needs to be > authenticated against the repo that is passed. For ex: User '23784' > needs to be authent

Re: [git-users] Git push URL encoding issue

2015-09-03 Thread Bideep Bezbaruah
This is a service consumed by many users and there is a validation requirement where every user trying to use this service, needs to be authenticated against the repo that is passed. For ex: User '23784' needs to be authenticated against https://github.company.com/abcd/devrepo URL before allowi

Re: [git-users] Git push URL encoding issue

2015-09-03 Thread Konstantin Khomoutov
On Thu, 3 Sep 2015 09:24:40 -0700 (PDT) Bideep Bezbaruah wrote: > I have a use case to push files to git using command like: > > git push https://:github.company.com/abcd/devrepo > > master:master > > But, if the password contains special characters like ‘@’ and ‘$’, I > am converting it to he

[git-users] Git push URL encoding issue

2015-09-03 Thread Bideep Bezbaruah
I have a use case to push files to git using command like: git push https://: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