├── .github └── workflows │ ├── build.yml │ └── pr-check.yaml ├── .gitignore ├── README-zh_CN.adoc ├── README.adoc ├── pom.xml └── src └── docs └── asciidoc ├── Collaboration.adoc ├── Infranstruction.adoc ├── OpenSourceManual.adoc ├── OpenSourceQA.adoc ├── Preparation.adoc ├── authors.adoc ├── code ├── hello-first-patch.patch ├── hello.c └── hello.c.orig ├── contributing-template.adoc ├── enlish_learning.adoc ├── github-introduction.adoc ├── glossary.adoc ├── how-to-ask.adoc ├── images ├── android-workflow-0.png ├── build_success.png ├── coverage_process.png ├── googel-opensourceway.png ├── isulad-project-description.png ├── isulad-project-name.png ├── wenming-github-profile-2018.png ├── wenming-github-profile-2019.png └── wenming-github-profile-2020.png ├── maintainer.adoc ├── preface.adoc ├── resource ├── fonts │ └── droid-sans-fallback.ttf └── themes │ ├── KaiGenGothicCN-theme.yml │ ├── logo.jpg │ └── style-theme.yml └── vcs ├── VCS-introduciton.adoc ├── era-git-vcs.adoc └── git-introduction.adoc /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/.github/workflows/pr-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pdf 3 | -------------------------------------------------------------------------------- /README-zh_CN.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/README-zh_CN.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/README.adoc -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/pom.xml -------------------------------------------------------------------------------- /src/docs/asciidoc/Collaboration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/Collaboration.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/Infranstruction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/Infranstruction.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/OpenSourceManual.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/OpenSourceManual.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/OpenSourceQA.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/OpenSourceQA.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/Preparation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/Preparation.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/authors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/authors.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/code/hello-first-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/code/hello-first-patch.patch -------------------------------------------------------------------------------- /src/docs/asciidoc/code/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/code/hello.c -------------------------------------------------------------------------------- /src/docs/asciidoc/code/hello.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/code/hello.c.orig -------------------------------------------------------------------------------- /src/docs/asciidoc/contributing-template.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/contributing-template.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/enlish_learning.adoc: -------------------------------------------------------------------------------- 1 | === 2 | 3 | 如何学习 4 | -------------------------------------------------------------------------------- /src/docs/asciidoc/github-introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/github-introduction.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/glossary.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/glossary.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/how-to-ask.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/how-to-ask.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/images/android-workflow-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/android-workflow-0.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/build_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/build_success.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/coverage_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/coverage_process.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/googel-opensourceway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/googel-opensourceway.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/isulad-project-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/isulad-project-description.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/isulad-project-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/isulad-project-name.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/wenming-github-profile-2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/wenming-github-profile-2018.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/wenming-github-profile-2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/wenming-github-profile-2019.png -------------------------------------------------------------------------------- /src/docs/asciidoc/images/wenming-github-profile-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/images/wenming-github-profile-2020.png -------------------------------------------------------------------------------- /src/docs/asciidoc/maintainer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/maintainer.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/preface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/preface.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/resource/fonts/droid-sans-fallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/resource/fonts/droid-sans-fallback.ttf -------------------------------------------------------------------------------- /src/docs/asciidoc/resource/themes/KaiGenGothicCN-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/resource/themes/KaiGenGothicCN-theme.yml -------------------------------------------------------------------------------- /src/docs/asciidoc/resource/themes/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/resource/themes/logo.jpg -------------------------------------------------------------------------------- /src/docs/asciidoc/resource/themes/style-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/resource/themes/style-theme.yml -------------------------------------------------------------------------------- /src/docs/asciidoc/vcs/VCS-introduciton.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/vcs/VCS-introduciton.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/vcs/era-git-vcs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/vcs/era-git-vcs.adoc -------------------------------------------------------------------------------- /src/docs/asciidoc/vcs/git-introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WillemJiang/open-source-manual/HEAD/src/docs/asciidoc/vcs/git-introduction.adoc --------------------------------------------------------------------------------