CMF
RDK Releases
Documentation
CMF Videos
Support
Support for CMF is provided by the RDK Support group.
To contact RDK Support:
Enter a ticket: https://jira.rdkcentral.com/
or
E-mail: support@rdkcentral.com
...
...
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 | ||
---|---|---|
| ||
~/.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 | ||
---|---|---|
| ||
~/.netrc
machine github.com
login PUBLIC_ID
password PUBLIC_ID_PAT
machine github.com
login ENTERPRISE_ID
password ENTERPRISE_ID_PAT |
...