Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. If accessing private repositories please ensure you have associated a PUBLIC GitHub ID with your RDK Central Account:
    1. RDK Central Github Profile Setup for Private Repository Access
  2. Once step 1 is done you will receive a GitHub Invite to the email account associated with your PUBLIC GitHub Account that you associated with your rdkcentral account, make sure you click on the invite.
    1. if you haven't received the invite within 24 hours then please send a support request to support@rdkcentral.com
    2. check https://github.com/settings/emails to see what your public GitHub primary email and other accounts are configured as for the public account you are using
    3. make sure to check Junk/Spam/Filtered emails if you don't see it
    4. the invite remains valid for 7 days


...


Working with multiple GitHub Organisations and Accounts

If you have are a member of more than one GitHub organisation and have different GitHub accounts for them, e.g. your a member of rdkcentral and an enterprise GitHub organisation, you can setup  your access as follows:


Code Block
themeMidnight
~/.gitconfig

[url "https://PUBLIC_ID@github.com/rdkcentral"]
    insteadOf = "https://github.com/rdkcentral"
    insteadOf = "ssh://github.com/rdkcentral"
    insteadOf = "ssh://git@github.com/rdkcentral"
    insteadOf = "git@github.com:rdkcentral"
    insteadOf = "github.com:rdkcentral"

[url "https://ENTERPRISE_ID@github.com/company"]
    insteadOf = "https://github.com/company"
    insteadOf = "ssh://github.com/company"
    insteadOf = "ssh://git@github.com/company"
    insteadOf = "git@github.com:company"
    insteadOf = "github.com:company"


Code Block
themeMidnight
~/.netrc

machine github.com 
    login PUBLIC_ID 
    password PUBLIC_ID_PAT
machine github.com 
    login ENTERPRISE_ID 
    password ENTERPRISE_ID_PAT


...