Background | Introduction | Usage | Examples | Related Efforts | Maintainers | Contributing | License | 中文
You can generate a new repository with the same directory structure and files as an existing repository. If you have some idea, welcome to discussion.
github-repository-template
├── .github
│ ├── COMMIT_CONVENTION.md
│ ├── ISSUE_TEMPLATE
│ │ ├── bug_report.md
│ │ ├── custom.md
│ │ └── feature_request.md
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows
│ └── main.yml
├── .gitignore
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── README.en-US.md
-
A text file containing information about the files in a repository that is typically the first file a visitor to your repository will see. A README file, along with a repository license, contribution guidelines, and a code of conduct, helps you share expectations and manage contributions to your project.
-
README use English.
-
A document that you can include with your project to let people know what they can and can't do with your source code.
-
A gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected; see the NOTES.
-
Every time a new version is released, record the changed features of the new version, as well as the modified bug and other information.
-
Contribution specifications, such as code writing specifications, if you ask questions, raise bugs, raise requirements, how to write documents, etc.
-
git commit information specification.
-
.github/PULL_REQUEST_TEMPLATE.md
the template of
pull request
. -
.github/ISSUE_TEMPLATE/bug_report.md
the template of raise bug in issue.
-
.github/ISSUE_TEMPLATE/custom.md
custom issue template.
-
.github/ISSUE_TEMPLATE/feature_request.md
the template of raise requirement in issue.
-
GitHub Action profile.
clickbutton,create a standard github repository quickly。
or use GitHub cli gh
gh repo create myRepository -p GitHubTemplates/github-repository-template
Generally, the open source repository need to have some examples or codes for users' reference.
- standard-readme — A standard style for README files.
- Angular.js — The CONTRIBUTING of Angular.js.
Feel free to dive in or submit PRs。
Github-Repository-Template follows the Contributing specification。
Github-Repository-Template follows the Contributor Covenant Code of Conduct。