├── !JEKYLL ├── !USING_THIS_TEMPLATE.md ├── .editorconfig ├── .gitattributes ├── .github ├── .FUNDING.yaml ├── .FUNDING.yml ├── .github_README.md ├── .github_README_V1.md ├── CODEOWNERS ├── Discussions │ ├── README.md │ └── README_V1.md ├── Funding │ ├── OldVersions │ │ ├── FUNDING_V1.yaml │ │ ├── FUNDING_V1.yml │ │ └── README.yaml │ ├── README.md │ └── README_V1.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── README.txt │ ├── config.yml │ ├── issue-template.yml │ └── miscellaneous.yml ├── Issues │ ├── GitHub_Default_IssueLabels.yaml │ ├── README.md │ └── README_V1.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── README.md │ └── pull_request_template_V1.md ├── Pull_Requests │ ├── 1 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.txt │ │ │ └── README.txt │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 2 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.txt │ │ │ └── README.txt │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 3 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 4 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 5 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 6 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 7 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 8 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 9 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 10 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ ├── 11 │ │ ├── Body │ │ │ ├── OldVersions │ │ │ │ └── README_V1.md │ │ │ └── README.md │ │ ├── Title │ │ │ └── TITLE.txt │ │ └── URL │ │ │ └── LINK.txt │ └── 12-100 │ │ └── 12 │ │ ├── Body │ │ ├── OldVersions │ │ │ ├── README.txt │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── Title │ │ ├── README.md │ │ └── TITLE.txt │ │ └── URLL │ │ ├── LINK.urll │ │ └── README.md ├── SECURITY │ ├── OldVersions │ │ └── English │ │ │ └── USA │ │ │ ├── README.txt │ │ │ └── SECURITY_V1.md │ └── README.md ├── SocialPreview │ ├── README.md │ ├── README_V1.md │ └── Unused │ │ └── repository-open-graph-template.png ├── pull_request_template.md ├── workflowArchives │ ├── GitHub-Pages │ │ ├── Jekyll │ │ │ ├── jekyll-gh-pages-checkout-V3_V1.yml │ │ │ ├── jekyll-gh-pages_V1.yml │ │ │ └── jekyll_V1.yml │ │ ├── MdBook │ │ │ └── mdbook_V1.yml │ │ └── Static-HTML │ │ │ └── github-pages-static-html_V1.yml │ ├── Linting │ │ ├── Super-linter │ │ │ └── super-linter_V1.yml │ │ └── YAML │ │ │ └── yaml-lint_V1.yml │ ├── MdBook │ │ └── mdbook_V1.yml │ ├── Super-linter │ │ └── super-linter_V1.yml │ └── YAML │ │ └── Lint │ │ └── yaml-lint_V1.yml └── workflows │ ├── github-pages-static-html.yml │ ├── jekyll-gh-pages-checkout-V3.yml │ ├── jekyll-gh-pages.yml │ ├── jekyll.yml │ ├── makefile.yml │ ├── mdbook.yml │ ├── super-linter.yml │ └── yaml-lint.yml ├── .gitignore ├── .gitlab └── GitLab_icon.svg ├── 404.html ├── 404.jpeg ├── 404.md ├── AUTHORS ├── AUTHORS.md ├── AUTOMATE2001.yaml ├── AUTOMATE2001.yml ├── Branches ├── !README │ └── OldVersions │ │ └── English │ │ └── US │ │ ├── 1 │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ ├── README_V1.md │ │ │ ├── README_V10.md │ │ │ ├── README_V2.md │ │ │ ├── README_V3.md │ │ │ ├── README_V4.md │ │ │ ├── README_V5.md │ │ │ ├── README_V6.md │ │ │ ├── README_V7.md │ │ │ ├── README_V8.md │ │ │ └── README_V9.md │ │ └── README.md └── README.md ├── CONTRIBUTING.md ├── COPYINGL ├── CREDITS ├── CREDITS.wiki ├── DRM-free_label.en.svg ├── DeGoogle ├── Docs ├── Codeowners │ ├── OldVersions │ │ └── English │ │ │ └── US │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── README_V1.md │ └── README.md ├── Commit-Count │ ├── OldVersions │ │ └── English │ │ │ └── US │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── README_V1.md │ └── README.md ├── Main-Branch │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── US │ │ │ └── 1 │ │ │ └── 1-100 │ │ │ ├── README.txt │ │ │ └── README_V1.md │ └── README.md ├── Releases │ └── V8 │ │ ├── 8.2022.04.16 │ │ ├── !OldVersions │ │ │ └── English │ │ │ │ └── US │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ ├── README_V1.md │ │ │ │ └── README_V2.md │ │ └── README.md │ │ ├── 8.2022.04.17 │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── US │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2022.04.22 │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── US │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2022.05.19 │ │ ├── OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── US │ │ │ │ └── 1 │ │ │ │ └── 1-100 │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2022.06.13 │ │ ├── !OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2022.12.07 │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2022.6.28 │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2023.03.06 │ │ ├── OldVersions │ │ │ └── English │ │ │ │ └── USA │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2023.05.03 │ │ ├── OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2024.08.18 │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2024.08.21 │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2024.08.22 │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2024.08.23 │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2024.08.26 │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ ├── 8.2024.08.27 │ │ ├── !OldVersions │ │ │ └── README │ │ │ │ └── English │ │ │ │ └── USA │ │ │ │ ├── README.txt │ │ │ │ └── README_V1.md │ │ └── README.md │ │ └── 8.2024.08.28 │ │ ├── !OldVersions │ │ └── README │ │ │ └── English │ │ │ └── USA │ │ │ ├── README.txt │ │ │ └── README_V1.md │ │ └── README.md └── V9_Considerations │ ├── OldVersions │ └── English │ │ └── US │ │ └── 1 │ │ └── 1-100 │ │ ├── README.txt │ │ └── README_V1.md │ └── README.md ├── GitHub-Pages-Default ├── GitHub-Pages-Language ├── INITIAL_COMMIT.txt ├── INSTALL ├── INSTALL.rst ├── JMAP ├── Journaling ├── K.desktop ├── LICENSE-GPL.txt ├── LICENSE-GPL3.txt ├── LICENSE.txt ├── Meadows-Branch ├── OldVersions ├── !USING_THIS_TEMPLATE │ ├── !USING_THIS_TEMPLATE_V1.md │ ├── !USING_THIS_TEMPLATE_V2.md │ └── README.md ├── AUTHORS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── AUTHORS_V1 │ │ ├── AUTHORS_V1.md │ │ └── README.md ├── AUTOMATE2001 │ ├── AUTOMATE2001_V1.yaml │ ├── AUTOMATE2001_V1.yml │ └── README.yaml ├── CODEOWNERS │ ├── CODEOWNERS_V2 │ └── README.cfg ├── CONTRIBUTING │ └── 1 │ │ └── 1-100 │ │ ├── CONTRIBUTING_V1.md │ │ └── README.txt ├── COPYING │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── COPYING_V1 │ │ ├── COPYING_V1.md │ │ └── README.md ├── CREDITS │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── CREDITS_V1 │ │ ├── CREDITS_V1.wiki │ │ └── README.wiki ├── EDITORCONFIG │ └── 1 │ │ └── 1-100 │ │ ├── README.cfg │ │ ├── V1.editorconfig │ │ └── V2.editorconfig ├── GITATTRIBUTES │ └── 1 │ │ └── 1-100 │ │ ├── README.cfg │ │ └── V1.gitattributes ├── GITIGNORE │ └── 1 │ │ └── 1-100 │ │ ├── README.yaml │ │ └── V1.gitignore ├── INITIAL_COMMIT │ ├── INITIAL_COMMIT_V1.txt │ └── README.txt ├── INSTALL │ └── English │ │ └── 1 │ │ └── 1-100 │ │ ├── INSTALL_V1 │ │ ├── INSTALL_V1.rst │ │ └── README.rst ├── KDESKTOP │ ├── K_V1.desktop │ └── README.desktop ├── LICENSE │ └── GPL3 │ │ ├── LICENSE-GPL3_V1.txt │ │ ├── LICENSE-GPL_V1.txt │ │ ├── LICENSE_V1.txt │ │ └── README.md ├── MAKEFILE │ └── 1 │ │ └── 1-100 │ │ ├── README.mk │ │ └── makefile_V1.mk ├── PLANS │ └── TV8X │ │ ├── PLANS_TV8X_V1.markdown │ │ └── README.markdown ├── README │ └── English │ │ └── 1 │ │ ├── 3-100 │ │ ├── README.md │ │ └── README_V3.md │ │ ├── README.txt │ │ ├── README_V0.1.5.md │ │ ├── README_V0.1.6.md │ │ ├── README_V0.1.md │ │ ├── README_V1.md │ │ └── README_V2.md ├── ROOTFILES │ ├── README.urll │ └── ROOTFILES_V1.base └── TODO │ └── English │ └── 1 │ └── 1-100 │ ├── README.mkd │ └── TODO_V1.mkd ├── PLANS_TV8X.markdown ├── Predecessors ├── OldVersions │ └── English │ │ └── USA │ │ ├── README.txt │ │ └── README_V1.md └── README.md ├── README.md ├── ROOTFILES.base ├── RepoData └── Description │ └── GitHub │ ├── OldVersions │ └── English │ │ └── USA │ │ ├── README.md │ │ └── README_V1.txt │ └── README.txt ├── SNU-DEFAULT ├── SNU-OTHER ├── SNU-Programming-Tools ├── Setup └── Graphics │ ├── Include-Branches_Checked.png │ ├── Include-Branches_Unchecked.png │ └── Use-this-template-button.png ├── SnapcraftBranch ├── SponsorButton.png ├── TODO.mkd ├── Template-AI2001 ├── Template-AdVenture-Capitalist ├── Template-AdVenture-Communist ├── Template-Ada-Other ├── Template-Assembly-Other ├── Template-BASIC-Other ├── Template-BitCity ├── Template-BoomBeach ├── Template-C-Other ├── Template-C-Plus-Plus-Other ├── Template-C-Sharp-Other ├── Template-CMake-Other ├── Template-CSS-Other ├── Template-Candroid ├── Template-ClashofClans ├── Template-Crystal-Other ├── Template-Cython-Other ├── Template-D-Other ├── Template-DeGoogle ├── Template-Diff-Other ├── Template-DiscoZoo ├── Template-Dockerfile-Other ├── Template-Documentation-Markdown-Other ├── Template-Documentation-Pod-Other ├── Template-Documentation-RDoc-Other ├── Template-Documentation-ReStructuredText-Other ├── Template-Elixir-Other ├── Template-Elm-Other ├── Template-F-Sharp-Other ├── Template-Fortran-Other ├── Template-GDScript-Other ├── Template-Genie-Other ├── Template-GitHub-Pages-default ├── Template-GitHub-Pages-language ├── Template-Gosu-Other ├── Template-HTML-Other ├── Template-Haskell-Other ├── Template-INI-Other ├── Template-JSON-Other ├── Template-Java-Other ├── Template-JavaScript-Other ├── Template-Julia-Other ├── Template-Kotlin-Other ├── Template-LegoTower ├── Template-LennyOS-C ├── Template-LennyOS-Lua ├── Template-Less-Other ├── Template-Lua-Other ├── Template-Makefile-Other ├── Template-Meadows ├── Template-Metal-Other ├── Template-ModernSmurfsVillage ├── Template-MoonScript-Other ├── Template-MotorWorld-CarFactory ├── Template-Nim-Other ├── Template-Nix-Other ├── Template-Objective-C-Other ├── Template-Other ├── Template-PDNet-Channel ├── Template-Perl-Other ├── Template-Plain-Text-Other ├── Template-Prolog-Other ├── Template-Python-Other ├── Template-Q-Sharp-Other ├── Template-R-Other ├── Template-Red-Other ├── Template-Ruby-Other ├── Template-Rust-Other ├── Template-SNU-Default ├── Template-SNU-Other ├── Template-SNU-Programming-Tools ├── Template-SPM2001-Journaling ├── Template-SPM2001-Journaling-Images ├── Template-SPM2001-Journaling-Images-GitHub_Yearly ├── Template-SPM2001-Journaling-TW-ELM-V1 ├── Template-SPM2001-Map ├── Template-SQL-Other ├── Template-STAR-Other ├── Template-Scala-Other ├── Template-Scheme-Other ├── Template-Seanpm2001-WorldDB-ImageVariant ├── Template-Seanpm2001-WorldDB-StandardVariant ├── Template-Shell-Other ├── Template-Snapcraft ├── Template-Svelte-Other ├── Template-Swift-Other ├── Template-TeX-Other ├── Template-TinyDeathStar ├── Template-TinyTower ├── Template-Twig-Other ├── Template-TypeScript-Other ├── Template-UkraineHistorySimulator-Other ├── Template-V-Other ├── Template-VBScript-Other ├── Template-Vala-Other ├── Template-WebAssembly-Other ├── Template-XML-Other ├── Template-XSLT-Other ├── Template-YAML-Other ├── WacOS-Other ├── _config.yml ├── makefile.mk └── pull_request_template.md /!JEKYLL: -------------------------------------------------------------------------------- 1 | GitHub/Jekyll/ZIP 2 | -------------------------------------------------------------------------------- /!USING_THIS_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/!USING_THIS_TEMPLATE.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/.FUNDING.yaml -------------------------------------------------------------------------------- /.github/.FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/.FUNDING.yml -------------------------------------------------------------------------------- /.github/.github_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/.github_README.md -------------------------------------------------------------------------------- /.github/.github_README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/.github_README_V1.md -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/Discussions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Discussions/README.md -------------------------------------------------------------------------------- /.github/Discussions/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Discussions/README_V1.md -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Funding/OldVersions/FUNDING_V1.yaml -------------------------------------------------------------------------------- /.github/Funding/OldVersions/FUNDING_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Funding/OldVersions/FUNDING_V1.yml -------------------------------------------------------------------------------- /.github/Funding/OldVersions/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Funding/OldVersions/README.yaml -------------------------------------------------------------------------------- /.github/Funding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Funding/README.md -------------------------------------------------------------------------------- /.github/Funding/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Funding/README_V1.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/ISSUE_TEMPLATE/README.txt -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/ISSUE_TEMPLATE/issue-template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/miscellaneous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/ISSUE_TEMPLATE/miscellaneous.yml -------------------------------------------------------------------------------- /.github/Issues/GitHub_Default_IssueLabels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Issues/GitHub_Default_IssueLabels.yaml -------------------------------------------------------------------------------- /.github/Issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Issues/README.md -------------------------------------------------------------------------------- /.github/Issues/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Issues/README_V1.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/PULL_REQUEST_TEMPLATE/README.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template_V1.md -------------------------------------------------------------------------------- /.github/Pull_Requests/1/Body/OldVersions/README_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Pull_Requests/1/Body/OldVersions/README_V1.txt -------------------------------------------------------------------------------- /.github/Pull_Requests/1/Body/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Pull_Requests/1/Body/README.txt -------------------------------------------------------------------------------- /.github/Pull_Requests/1/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to 'other'' #1 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/1/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/1 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/10/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/10/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/10/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to SNU Other 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/10/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/10 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/11/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/11/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/11/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to SNU Programming Tools 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/11/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/11 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/Body/OldVersions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Pull_Requests/12-100/12/Body/OldVersions/README.txt -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Pull_Requests/12-100/12/Body/OldVersions/README_V1.md -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/Body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/Pull_Requests/12-100/12/Body/README.md -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/Title/README.md: -------------------------------------------------------------------------------- 1 | TWL-ELM-BRANCH #12 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | TWL-ELM-BRANCH #12 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/URLL/LINK.urll: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/12 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/12-100/12/URLL/README.md: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/12 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/2/Body/OldVersions/README_V1.txt: -------------------------------------------------------------------------------- 1 | Create the DeGoogle branch. 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/2/Body/README.txt: -------------------------------------------------------------------------------- 1 | Create the DeGoogle branch. 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/2/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to DeGoogle #2 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/2/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/2 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/3/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/3/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/3/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to GitHub pages default #3 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/3/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/3 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/4/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/4/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/4/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to GitHub-Pages-Language 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/4/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/4 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/5/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/5/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/5/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to Snapcraft 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/5/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/5 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/6/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/6/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/6/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to Meadows 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/6/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/6 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/7/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/7/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/7/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to journaling 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/7/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/7 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/8/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/8/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/8/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to Journaling map 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/8/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/8 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/9/Body/OldVersions/README_V1.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/9/Body/README.md: -------------------------------------------------------------------------------- 1 | _No description provided._ 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/9/Title/TITLE.txt: -------------------------------------------------------------------------------- 1 | Branch out to SNU Default 2 | -------------------------------------------------------------------------------- /.github/Pull_Requests/9/URL/LINK.txt: -------------------------------------------------------------------------------- 1 | https://github.com/seanpm2001/Git-Template_V8/pull/9 2 | -------------------------------------------------------------------------------- /.github/SECURITY/OldVersions/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/SECURITY/OldVersions/English/USA/README.txt -------------------------------------------------------------------------------- /.github/SECURITY/OldVersions/English/USA/SECURITY_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/SECURITY/OldVersions/English/USA/SECURITY_V1.md -------------------------------------------------------------------------------- /.github/SECURITY/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/SECURITY/README.md -------------------------------------------------------------------------------- /.github/SocialPreview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/SocialPreview/README.md -------------------------------------------------------------------------------- /.github/SocialPreview/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/SocialPreview/README_V1.md -------------------------------------------------------------------------------- /.github/SocialPreview/Unused/repository-open-graph-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/SocialPreview/Unused/repository-open-graph-template.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages-checkout-V3_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages-checkout-V3_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll-gh-pages_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Jekyll/jekyll_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/GitHub-Pages/Jekyll/jekyll_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/MdBook/mdbook_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/GitHub-Pages/MdBook/mdbook_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/GitHub-Pages/Static-HTML/github-pages-static-html_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/GitHub-Pages/Static-HTML/github-pages-static-html_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/Super-linter/super-linter_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/Linting/Super-linter/super-linter_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Linting/YAML/yaml-lint_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/Linting/YAML/yaml-lint_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/MdBook/mdbook_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/MdBook/mdbook_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/Super-linter/super-linter_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/Super-linter/super-linter_V1.yml -------------------------------------------------------------------------------- /.github/workflowArchives/YAML/Lint/yaml-lint_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflowArchives/YAML/Lint/yaml-lint_V1.yml -------------------------------------------------------------------------------- /.github/workflows/github-pages-static-html.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/github-pages-static-html.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages-checkout-V3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/jekyll-gh-pages-checkout-V3.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.github/workflows/super-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/super-linter.yml -------------------------------------------------------------------------------- /.github/workflows/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.github/workflows/yaml-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/GitLab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/.gitlab/GitLab_icon.svg -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/404.html -------------------------------------------------------------------------------- /404.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/404.jpeg -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: /404.html 3 | --- 4 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/AUTHORS -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /AUTOMATE2001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/AUTOMATE2001.yaml -------------------------------------------------------------------------------- /AUTOMATE2001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/AUTOMATE2001.yml -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README.txt -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V10.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V2.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V3.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V4.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V5.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V6.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V7.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V8.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/1/1-100/README_V9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/1/1-100/README_V9.md -------------------------------------------------------------------------------- /Branches/!README/OldVersions/English/US/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/!README/OldVersions/English/US/README.md -------------------------------------------------------------------------------- /Branches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Branches/README.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYINGL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/COPYINGL -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/CREDITS -------------------------------------------------------------------------------- /CREDITS.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/CREDITS.wiki -------------------------------------------------------------------------------- /DRM-free_label.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/DRM-free_label.en.svg -------------------------------------------------------------------------------- /DeGoogle: -------------------------------------------------------------------------------- 1 | # DeGoogle branch 2 | -------------------------------------------------------------------------------- /Docs/Codeowners/OldVersions/English/US/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Codeowners/OldVersions/English/US/1/1-100/README.txt -------------------------------------------------------------------------------- /Docs/Codeowners/OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Codeowners/OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Codeowners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Codeowners/README.md -------------------------------------------------------------------------------- /Docs/Commit-Count/OldVersions/English/US/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Commit-Count/OldVersions/English/US/1/1-100/README.txt -------------------------------------------------------------------------------- /Docs/Commit-Count/OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Commit-Count/OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Commit-Count/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Commit-Count/README.md -------------------------------------------------------------------------------- /Docs/Main-Branch/!OldVersions/README/English/US/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Main-Branch/!OldVersions/README/English/US/1/1-100/README.txt -------------------------------------------------------------------------------- /Docs/Main-Branch/!OldVersions/README/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Main-Branch/!OldVersions/README/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Main-Branch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Main-Branch/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.16/!OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.16/!OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.16/!OldVersions/English/US/1/1-100/README_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.16/!OldVersions/English/US/1/1-100/README_V2.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.16/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.17/OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.17/OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.17/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.22/OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.22/OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.04.22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.04.22/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.05.19/OldVersions/README/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.05.19/OldVersions/README/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.05.19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.05.19/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.06.13/!OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.06.13/!OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.06.13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.06.13/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.12.07/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.12.07/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.12.07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.12.07/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.6.28/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.6.28/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2022.6.28/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2022.6.28/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2023.03.06/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2023.03.06/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2023.03.06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2023.03.06/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2023.05.03/OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2023.05.03/OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2023.05.03/OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2023.05.03/OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2023.05.03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2023.05.03/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.18/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.18/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.18/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.18/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.18/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.21/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.21/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.21/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.21/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.21/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.22/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.22/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.22/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.22/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.22/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.23/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.23/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.23/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.23/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.23/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.26/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.26/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.26/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.26/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.26/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.27/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.27/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.27/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.27/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.27/README.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.28/!OldVersions/README/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.28/!OldVersions/README/English/USA/README.txt -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.28/!OldVersions/README/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.28/!OldVersions/README/English/USA/README_V1.md -------------------------------------------------------------------------------- /Docs/Releases/V8/8.2024.08.28/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/Releases/V8/8.2024.08.28/README.md -------------------------------------------------------------------------------- /Docs/V9_Considerations/OldVersions/English/US/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/V9_Considerations/OldVersions/English/US/1/1-100/README.txt -------------------------------------------------------------------------------- /Docs/V9_Considerations/OldVersions/English/US/1/1-100/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/V9_Considerations/OldVersions/English/US/1/1-100/README_V1.md -------------------------------------------------------------------------------- /Docs/V9_Considerations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Docs/V9_Considerations/README.md -------------------------------------------------------------------------------- /GitHub-Pages-Default: -------------------------------------------------------------------------------- 1 | # GitHub pages default branch 2 | -------------------------------------------------------------------------------- /GitHub-Pages-Language: -------------------------------------------------------------------------------- 1 | # GitHub-Pages-Language branch 2 | -------------------------------------------------------------------------------- /INITIAL_COMMIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/INITIAL_COMMIT.txt -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /JMAP: -------------------------------------------------------------------------------- 1 | # Journaling map 2 | -------------------------------------------------------------------------------- /Journaling: -------------------------------------------------------------------------------- 1 | # Journaling branch 2 | -------------------------------------------------------------------------------- /K.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/K.desktop -------------------------------------------------------------------------------- /LICENSE-GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/LICENSE-GPL.txt -------------------------------------------------------------------------------- /LICENSE-GPL3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/LICENSE-GPL3.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Meadows-Branch: -------------------------------------------------------------------------------- 1 | # Meadows-Branch 2 | -------------------------------------------------------------------------------- /OldVersions/!USING_THIS_TEMPLATE/!USING_THIS_TEMPLATE_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/!USING_THIS_TEMPLATE/!USING_THIS_TEMPLATE_V1.md -------------------------------------------------------------------------------- /OldVersions/!USING_THIS_TEMPLATE/!USING_THIS_TEMPLATE_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/!USING_THIS_TEMPLATE/!USING_THIS_TEMPLATE_V2.md -------------------------------------------------------------------------------- /OldVersions/!USING_THIS_TEMPLATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/!USING_THIS_TEMPLATE/README.md -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1 -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/AUTHORS/English/1/1-100/AUTHORS_V1.md -------------------------------------------------------------------------------- /OldVersions/AUTHORS/English/1/1-100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/AUTHORS/English/1/1-100/README.md -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yaml -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/AUTOMATE2001/AUTOMATE2001_V1.yml -------------------------------------------------------------------------------- /OldVersions/AUTOMATE2001/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/AUTOMATE2001/README.yaml -------------------------------------------------------------------------------- /OldVersions/CODEOWNERS/CODEOWNERS_V2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CODEOWNERS/CODEOWNERS_V2 -------------------------------------------------------------------------------- /OldVersions/CODEOWNERS/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CODEOWNERS/README.cfg -------------------------------------------------------------------------------- /OldVersions/CONTRIBUTING/1/1-100/CONTRIBUTING_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CONTRIBUTING/1/1-100/CONTRIBUTING_V1.md -------------------------------------------------------------------------------- /OldVersions/CONTRIBUTING/1/1-100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CONTRIBUTING/1/1-100/README.txt -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/COPYING/English/1/1-100/COPYING_V1 -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/COPYING_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/COPYING/English/1/1-100/COPYING_V1.md -------------------------------------------------------------------------------- /OldVersions/COPYING/English/1/1-100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/COPYING/English/1/1-100/README.md -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CREDITS/English/1/1-100/CREDITS_V1 -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/CREDITS_V1.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CREDITS/English/1/1-100/CREDITS_V1.wiki -------------------------------------------------------------------------------- /OldVersions/CREDITS/English/1/1-100/README.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/CREDITS/English/1/1-100/README.wiki -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/EDITORCONFIG/1/1-100/README.cfg -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/EDITORCONFIG/1/1-100/V1.editorconfig -------------------------------------------------------------------------------- /OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/EDITORCONFIG/1/1-100/V2.editorconfig -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/README.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/GITATTRIBUTES/1/1-100/README.cfg -------------------------------------------------------------------------------- /OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/GITATTRIBUTES/1/1-100/V1.gitattributes -------------------------------------------------------------------------------- /OldVersions/GITIGNORE/1/1-100/README.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/GITIGNORE/1/1-100/README.yaml -------------------------------------------------------------------------------- /OldVersions/GITIGNORE/1/1-100/V1.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/GITIGNORE/1/1-100/V1.gitignore -------------------------------------------------------------------------------- /OldVersions/INITIAL_COMMIT/INITIAL_COMMIT_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/INITIAL_COMMIT/INITIAL_COMMIT_V1.txt -------------------------------------------------------------------------------- /OldVersions/INITIAL_COMMIT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/INITIAL_COMMIT/README.txt -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/INSTALL/English/1/1-100/INSTALL_V1 -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/INSTALL_V1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/INSTALL/English/1/1-100/INSTALL_V1.rst -------------------------------------------------------------------------------- /OldVersions/INSTALL/English/1/1-100/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/INSTALL/English/1/1-100/README.rst -------------------------------------------------------------------------------- /OldVersions/KDESKTOP/K_V1.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/KDESKTOP/K_V1.desktop -------------------------------------------------------------------------------- /OldVersions/KDESKTOP/README.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/KDESKTOP/README.desktop -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL3_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/LICENSE/GPL3/LICENSE-GPL_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/LICENSE_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/LICENSE/GPL3/LICENSE_V1.txt -------------------------------------------------------------------------------- /OldVersions/LICENSE/GPL3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/LICENSE/GPL3/README.md -------------------------------------------------------------------------------- /OldVersions/MAKEFILE/1/1-100/README.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/MAKEFILE/1/1-100/README.mk -------------------------------------------------------------------------------- /OldVersions/MAKEFILE/1/1-100/makefile_V1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/MAKEFILE/1/1-100/makefile_V1.mk -------------------------------------------------------------------------------- /OldVersions/PLANS/TV8X/PLANS_TV8X_V1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/PLANS/TV8X/PLANS_TV8X_V1.markdown -------------------------------------------------------------------------------- /OldVersions/PLANS/TV8X/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/PLANS/TV8X/README.markdown -------------------------------------------------------------------------------- /OldVersions/README/English/1/3-100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/3-100/README.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/3-100/README_V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/3-100/README_V3.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/README.txt -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/README_V0.1.5.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/README_V0.1.6.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/README_V0.1.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/README_V1.md -------------------------------------------------------------------------------- /OldVersions/README/English/1/README_V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/README/English/1/README_V2.md -------------------------------------------------------------------------------- /OldVersions/ROOTFILES/README.urll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/ROOTFILES/README.urll -------------------------------------------------------------------------------- /OldVersions/ROOTFILES/ROOTFILES_V1.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/ROOTFILES/ROOTFILES_V1.base -------------------------------------------------------------------------------- /OldVersions/TODO/English/1/1-100/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/TODO/English/1/1-100/README.mkd -------------------------------------------------------------------------------- /OldVersions/TODO/English/1/1-100/TODO_V1.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/OldVersions/TODO/English/1/1-100/TODO_V1.mkd -------------------------------------------------------------------------------- /PLANS_TV8X.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/PLANS_TV8X.markdown -------------------------------------------------------------------------------- /Predecessors/OldVersions/English/USA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Predecessors/OldVersions/English/USA/README.txt -------------------------------------------------------------------------------- /Predecessors/OldVersions/English/USA/README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Predecessors/OldVersions/English/USA/README_V1.md -------------------------------------------------------------------------------- /Predecessors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Predecessors/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/README.md -------------------------------------------------------------------------------- /ROOTFILES.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/ROOTFILES.base -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README.md -------------------------------------------------------------------------------- /RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/RepoData/Description/GitHub/OldVersions/English/USA/README_V1.txt -------------------------------------------------------------------------------- /RepoData/Description/GitHub/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/RepoData/Description/GitHub/README.txt -------------------------------------------------------------------------------- /SNU-DEFAULT: -------------------------------------------------------------------------------- 1 | # SNU Default branch 2 | -------------------------------------------------------------------------------- /SNU-OTHER: -------------------------------------------------------------------------------- 1 | # SNU Other branch 2 | -------------------------------------------------------------------------------- /SNU-Programming-Tools: -------------------------------------------------------------------------------- 1 | # SNU Programming Tools branch 2 | -------------------------------------------------------------------------------- /Setup/Graphics/Include-Branches_Checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Setup/Graphics/Include-Branches_Checked.png -------------------------------------------------------------------------------- /Setup/Graphics/Include-Branches_Unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Setup/Graphics/Include-Branches_Unchecked.png -------------------------------------------------------------------------------- /Setup/Graphics/Use-this-template-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Setup/Graphics/Use-this-template-button.png -------------------------------------------------------------------------------- /SnapcraftBranch: -------------------------------------------------------------------------------- 1 | # Snapcraft branch 2 | -------------------------------------------------------------------------------- /SponsorButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/SponsorButton.png -------------------------------------------------------------------------------- /TODO.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/TODO.mkd -------------------------------------------------------------------------------- /Template-AI2001: -------------------------------------------------------------------------------- 1 | # Template-AI2001 Branch 2 | -------------------------------------------------------------------------------- /Template-AdVenture-Capitalist: -------------------------------------------------------------------------------- 1 | # Template-AdVenture-Capitalist Branch 2 | -------------------------------------------------------------------------------- /Template-AdVenture-Communist: -------------------------------------------------------------------------------- 1 | # Template-AdVenture-Communist Branch 2 | -------------------------------------------------------------------------------- /Template-Ada-Other: -------------------------------------------------------------------------------- 1 | # Template-Ada-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Assembly-Other: -------------------------------------------------------------------------------- 1 | # Template-Assembly-Other Branch 2 | -------------------------------------------------------------------------------- /Template-BASIC-Other: -------------------------------------------------------------------------------- 1 | # Template-BASIC-Other Branch 2 | -------------------------------------------------------------------------------- /Template-BitCity: -------------------------------------------------------------------------------- 1 | # Template-BitCity Branch 2 | -------------------------------------------------------------------------------- /Template-BoomBeach: -------------------------------------------------------------------------------- 1 | # Template-BoomBeach Branch 2 | -------------------------------------------------------------------------------- /Template-C-Other: -------------------------------------------------------------------------------- 1 | # Template-C-Other Branch 2 | -------------------------------------------------------------------------------- /Template-C-Plus-Plus-Other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/Template-C-Plus-Plus-Other -------------------------------------------------------------------------------- /Template-C-Sharp-Other: -------------------------------------------------------------------------------- 1 | # Template-C-Sharp-Other Branch 2 | -------------------------------------------------------------------------------- /Template-CMake-Other: -------------------------------------------------------------------------------- 1 | # Template-CMake-Other Branch 2 | -------------------------------------------------------------------------------- /Template-CSS-Other: -------------------------------------------------------------------------------- 1 | # Template-CSS-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Candroid: -------------------------------------------------------------------------------- 1 | # Template-Candroid Branch 2 | -------------------------------------------------------------------------------- /Template-ClashofClans: -------------------------------------------------------------------------------- 1 | # Template-ClashofClans Branch 2 | -------------------------------------------------------------------------------- /Template-Crystal-Other: -------------------------------------------------------------------------------- 1 | # Template-Crystal-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Cython-Other: -------------------------------------------------------------------------------- 1 | # Template-Cython-Other Branch 2 | -------------------------------------------------------------------------------- /Template-D-Other: -------------------------------------------------------------------------------- 1 | # Template-D-Other Branch 2 | -------------------------------------------------------------------------------- /Template-DeGoogle: -------------------------------------------------------------------------------- 1 | # Template-DeGoogle Branch 2 | -------------------------------------------------------------------------------- /Template-Diff-Other: -------------------------------------------------------------------------------- 1 | # Template-Diff-Other Branch 2 | -------------------------------------------------------------------------------- /Template-DiscoZoo: -------------------------------------------------------------------------------- 1 | # Template-DiscoZoo Branch 2 | -------------------------------------------------------------------------------- /Template-Dockerfile-Other: -------------------------------------------------------------------------------- 1 | # Template-Dockerfile-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Documentation-Markdown-Other: -------------------------------------------------------------------------------- 1 | # Template-Documentation-Markdown-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Documentation-Pod-Other: -------------------------------------------------------------------------------- 1 | # Template-Documentation-Pod-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Documentation-RDoc-Other: -------------------------------------------------------------------------------- 1 | # Template-Documentation-RDoc-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Documentation-ReStructuredText-Other: -------------------------------------------------------------------------------- 1 | # Template-Documentation-ReStructuredText-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Elixir-Other: -------------------------------------------------------------------------------- 1 | # Template-Elixir-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Elm-Other: -------------------------------------------------------------------------------- 1 | # Template-Elm-Other Branch 2 | -------------------------------------------------------------------------------- /Template-F-Sharp-Other: -------------------------------------------------------------------------------- 1 | # Template-F-Sharp-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Fortran-Other: -------------------------------------------------------------------------------- 1 | # Template-Fortran-Other Branch 2 | -------------------------------------------------------------------------------- /Template-GDScript-Other: -------------------------------------------------------------------------------- 1 | # Template-GDScript-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Genie-Other: -------------------------------------------------------------------------------- 1 | # Template-Genie-Other Branch 2 | -------------------------------------------------------------------------------- /Template-GitHub-Pages-default: -------------------------------------------------------------------------------- 1 | # Template-GitHub-Pages-default Branch 2 | -------------------------------------------------------------------------------- /Template-GitHub-Pages-language: -------------------------------------------------------------------------------- 1 | # Template-GitHub-Pages-language Branch 2 | -------------------------------------------------------------------------------- /Template-Gosu-Other: -------------------------------------------------------------------------------- 1 | # Template-Gosu-Other Branch 2 | -------------------------------------------------------------------------------- /Template-HTML-Other: -------------------------------------------------------------------------------- 1 | # Template-HTML-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Haskell-Other: -------------------------------------------------------------------------------- 1 | # Template-Haskell-Other Branch 2 | -------------------------------------------------------------------------------- /Template-INI-Other: -------------------------------------------------------------------------------- 1 | # Template-INI-Other Branch 2 | -------------------------------------------------------------------------------- /Template-JSON-Other: -------------------------------------------------------------------------------- 1 | # Template-JSON-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Java-Other: -------------------------------------------------------------------------------- 1 | # Template-Java-Other Branch 2 | -------------------------------------------------------------------------------- /Template-JavaScript-Other: -------------------------------------------------------------------------------- 1 | # Template-JavaScript-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Julia-Other: -------------------------------------------------------------------------------- 1 | # Template-Julia-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Kotlin-Other: -------------------------------------------------------------------------------- 1 | # Template-Kotlin-Other Branch 2 | -------------------------------------------------------------------------------- /Template-LegoTower: -------------------------------------------------------------------------------- 1 | # Template-LegoTower Branch 2 | -------------------------------------------------------------------------------- /Template-LennyOS-C: -------------------------------------------------------------------------------- 1 | # Template-LennyOS-C Branch 2 | -------------------------------------------------------------------------------- /Template-LennyOS-Lua: -------------------------------------------------------------------------------- 1 | # Template-LennyOS-Lua Branch 2 | -------------------------------------------------------------------------------- /Template-Less-Other: -------------------------------------------------------------------------------- 1 | # Template-Less-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Lua-Other: -------------------------------------------------------------------------------- 1 | # Template-Lua-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Makefile-Other: -------------------------------------------------------------------------------- 1 | # Template-Makefile-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Meadows: -------------------------------------------------------------------------------- 1 | # Template-Meadows Branch 2 | -------------------------------------------------------------------------------- /Template-Metal-Other: -------------------------------------------------------------------------------- 1 | # Template-Metal-Other Branch 2 | -------------------------------------------------------------------------------- /Template-ModernSmurfsVillage: -------------------------------------------------------------------------------- 1 | # Template-ModernSmurfsVillage Branch 2 | -------------------------------------------------------------------------------- /Template-MoonScript-Other: -------------------------------------------------------------------------------- 1 | # Template-MoonScript-Other Branch 2 | -------------------------------------------------------------------------------- /Template-MotorWorld-CarFactory: -------------------------------------------------------------------------------- 1 | # Template-MotorWorld-CarFactory Branch 2 | -------------------------------------------------------------------------------- /Template-Nim-Other: -------------------------------------------------------------------------------- 1 | # Template-Nim-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Nix-Other: -------------------------------------------------------------------------------- 1 | # Template-Nix-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Objective-C-Other: -------------------------------------------------------------------------------- 1 | # Template-Objective-C-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Other: -------------------------------------------------------------------------------- 1 | # Template-Other Branch 2 | -------------------------------------------------------------------------------- /Template-PDNet-Channel: -------------------------------------------------------------------------------- 1 | # Template-PDNet-Channel Branch 2 | -------------------------------------------------------------------------------- /Template-Perl-Other: -------------------------------------------------------------------------------- 1 | # Template-Perl-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Plain-Text-Other: -------------------------------------------------------------------------------- 1 | # Template-Plain-Text-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Prolog-Other: -------------------------------------------------------------------------------- 1 | # Template-Prolog-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Python-Other: -------------------------------------------------------------------------------- 1 | # Template-Python-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Q-Sharp-Other: -------------------------------------------------------------------------------- 1 | # Template-Q-Sharp-Other Branch 2 | -------------------------------------------------------------------------------- /Template-R-Other: -------------------------------------------------------------------------------- 1 | # Template-R-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Red-Other: -------------------------------------------------------------------------------- 1 | # Template-Red-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Ruby-Other: -------------------------------------------------------------------------------- 1 | # Template-Ruby-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Rust-Other: -------------------------------------------------------------------------------- 1 | # Template-Rust-Other Branch 2 | -------------------------------------------------------------------------------- /Template-SNU-Default: -------------------------------------------------------------------------------- 1 | # Template-SNU-Default Branch 2 | -------------------------------------------------------------------------------- /Template-SNU-Other: -------------------------------------------------------------------------------- 1 | # Template-SNU-Other Branch 2 | -------------------------------------------------------------------------------- /Template-SNU-Programming-Tools: -------------------------------------------------------------------------------- 1 | # Template-SNU-Programming-Tools Branch 2 | -------------------------------------------------------------------------------- /Template-SPM2001-Journaling: -------------------------------------------------------------------------------- 1 | # Template-SPM2001-Journaling Branch 2 | -------------------------------------------------------------------------------- /Template-SPM2001-Journaling-Images: -------------------------------------------------------------------------------- 1 | # Template-SPM2001-Journaling-Images Branch 2 | -------------------------------------------------------------------------------- /Template-SPM2001-Journaling-Images-GitHub_Yearly: -------------------------------------------------------------------------------- 1 | # Template-SPM2001-Journaling-Images-GitHub_Yearly Branch 2 | -------------------------------------------------------------------------------- /Template-SPM2001-Journaling-TW-ELM-V1: -------------------------------------------------------------------------------- 1 | # Template-SPM2001-Journaling-TW-ELM-V1 Branch 2 | -------------------------------------------------------------------------------- /Template-SPM2001-Map: -------------------------------------------------------------------------------- 1 | # Template-SPM2001-Map Branch 2 | -------------------------------------------------------------------------------- /Template-SQL-Other: -------------------------------------------------------------------------------- 1 | # Template-SQL-Other Branch 2 | -------------------------------------------------------------------------------- /Template-STAR-Other: -------------------------------------------------------------------------------- 1 | # Template-STAR-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Scala-Other: -------------------------------------------------------------------------------- 1 | # Template-Scala-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Scheme-Other: -------------------------------------------------------------------------------- 1 | # Template-Scheme-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Seanpm2001-WorldDB-ImageVariant: -------------------------------------------------------------------------------- 1 | # Template-Seanpm2001-WorldDB-ImageVariant Branch 2 | -------------------------------------------------------------------------------- /Template-Seanpm2001-WorldDB-StandardVariant: -------------------------------------------------------------------------------- 1 | # Template-Seanpm2001-WorldDB-StandardVariant Branch 2 | -------------------------------------------------------------------------------- /Template-Shell-Other: -------------------------------------------------------------------------------- 1 | # Template-Shell-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Snapcraft: -------------------------------------------------------------------------------- 1 | # Template-Snapcraft Branch 2 | -------------------------------------------------------------------------------- /Template-Svelte-Other: -------------------------------------------------------------------------------- 1 | # Template-Svelte-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Swift-Other: -------------------------------------------------------------------------------- 1 | # Template-Swift-Other Branch 2 | -------------------------------------------------------------------------------- /Template-TeX-Other: -------------------------------------------------------------------------------- 1 | # Template-TeX-Other Branch 2 | -------------------------------------------------------------------------------- /Template-TinyDeathStar: -------------------------------------------------------------------------------- 1 | # Template-TinyDeathStar Branch 2 | -------------------------------------------------------------------------------- /Template-TinyTower: -------------------------------------------------------------------------------- 1 | # Template-TinyTower Branch 2 | -------------------------------------------------------------------------------- /Template-Twig-Other: -------------------------------------------------------------------------------- 1 | # Template-Twig-Other Branch 2 | -------------------------------------------------------------------------------- /Template-TypeScript-Other: -------------------------------------------------------------------------------- 1 | # Template-TypeScript-Other Branch 2 | -------------------------------------------------------------------------------- /Template-UkraineHistorySimulator-Other: -------------------------------------------------------------------------------- 1 | # Template-UkraineHistorySimulator-Other Branch 2 | -------------------------------------------------------------------------------- /Template-V-Other: -------------------------------------------------------------------------------- 1 | # Template-V-Other Branch 2 | -------------------------------------------------------------------------------- /Template-VBScript-Other: -------------------------------------------------------------------------------- 1 | # Template-VBScript-Other Branch 2 | -------------------------------------------------------------------------------- /Template-Vala-Other: -------------------------------------------------------------------------------- 1 | # Template-Vala-Other Branch 2 | -------------------------------------------------------------------------------- /Template-WebAssembly-Other: -------------------------------------------------------------------------------- 1 | # Template-WebAssembly-Other Branch 2 | -------------------------------------------------------------------------------- /Template-XML-Other: -------------------------------------------------------------------------------- 1 | # Template-XML-Other Branch 2 | -------------------------------------------------------------------------------- /Template-XSLT-Other: -------------------------------------------------------------------------------- 1 | # Template-XSLT-Other Branch 2 | -------------------------------------------------------------------------------- /Template-YAML-Other: -------------------------------------------------------------------------------- 1 | # Template-YAML-Other Branch 2 | -------------------------------------------------------------------------------- /WacOS-Other: -------------------------------------------------------------------------------- 1 | # WacOS-Other Branch 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/_config.yml -------------------------------------------------------------------------------- /makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/makefile.mk -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanpm2001/Git-Template_V8/HEAD/pull_request_template.md --------------------------------------------------------------------------------