├── .github ├── CODE_OF_CONDUCT(zh_CN).md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING(zh_CN).md ├── CONTRIBUTING.md ├── DISCUSSION_TEMPLATE │ └── troubleshooting-故障排查.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── integrated-request.yml ├── SUPPORT(zh_CN).md ├── SUPPORT.md └── workflows │ └── integrated-info.yml ├── .gitignore ├── README.md ├── knowledge-base ├── branch-community │ └── creation │ │ └── README.md └── localization-contribution │ ├── README.de.md │ ├── README.es.md │ ├── README.hi.md │ ├── README.id.md │ ├── README.ja.md │ ├── README.md │ ├── README.pt.md │ ├── README.ru.md │ ├── README.tl.md │ ├── README.zh_CN.md │ ├── README.zh_HK.md │ └── README.zh_TW.md └── upstream-contributions ├── README.md ├── README.zh.md └── README.zh_CN.md /.github/CODE_OF_CONDUCT(zh_CN).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/CODE_OF_CONDUCT(zh_CN).md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING(zh_CN).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/CONTRIBUTING(zh_CN).md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/troubleshooting-故障排查.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/DISCUSSION_TEMPLATE/troubleshooting-故障排查.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/integrated-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/ISSUE_TEMPLATE/integrated-request.yml -------------------------------------------------------------------------------- /.github/SUPPORT(zh_CN).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/SUPPORT(zh_CN).md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/integrated-info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.github/workflows/integrated-info.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/README.md -------------------------------------------------------------------------------- /knowledge-base/branch-community/creation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/branch-community/creation/README.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.de.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.es.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.hi.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.id.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.ja.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.pt.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.ru.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.tl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.tl.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.zh_CN.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.zh_HK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.zh_HK.md -------------------------------------------------------------------------------- /knowledge-base/localization-contribution/README.zh_TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/knowledge-base/localization-contribution/README.zh_TW.md -------------------------------------------------------------------------------- /upstream-contributions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/upstream-contributions/README.md -------------------------------------------------------------------------------- /upstream-contributions/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/upstream-contributions/README.zh.md -------------------------------------------------------------------------------- /upstream-contributions/README.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxdeepin/developer-center/HEAD/upstream-contributions/README.zh_CN.md --------------------------------------------------------------------------------