
eBay's Frequently Asked Questions page is a central hub where its customers can always go to with their most common questions. These are the 2 most popular questions eBay receives.
If you are seeing this error when login to github "You are not a member of any authorized group", you will need to file a request to add to the security group to access github through this link
http://SCAR
After manager and director approval, it will file a request with security team to add you to the security LDAP group which usually take 48 hours.
View ArticleProblem:
[jenkins@jenkins-slave-04-575910 ~]$ git clone https://github.paypal.com/PayPal-Cloud/rpm.git
Initialized empty Git repository in /home/jenkins/rpm/.git/
error: The requested URL returned error: 403 Forbidden while accessing https://github.paypal.com/PayPal-Cloud/rpm.git/info/refs
fatal: HTTP request failed
Solution:
This is the bug with git version 1.7.1 or earlier, either upgrade to later version or insert the username to the url, using OAuth token or ssh is working fine without any problem.
git clone https://[email protected]/PayPal-Cloud/rpm.git
View Article