This repository helps you bootstrap professional GitHub collaboration standards in minutes.
- Standardized issue reports for faster triage
- Clear feature requests with acceptance criteria
- Structured pull request reviews
- Ready-to-customize project README template
| Template | Purpose |
|---|---|
templates/ISSUE_BUG.md |
Bug report with severity, environment, logs, and checklist |
templates/ISSUE_FEATURE.md |
Feature request with problem statement and acceptance criteria |
templates/PR.md |
Pull request template with testing and security sections |
templates/README.md |
Generic README starter for software projects |
- Clone this repository:
git clone https://github.com/BREBION-Mathis/Github-templates.git
cd Github-templates- Copy templates into your target project:
# From your target project root
mkdir -p .github/ISSUE_TEMPLATE
cp /path/to/Github-templates/templates/ISSUE_BUG.md .github/ISSUE_TEMPLATE/bug_report.md
cp /path/to/Github-templates/templates/ISSUE_FEATURE.md .github/ISSUE_TEMPLATE/feature_request.md
cp /path/to/Github-templates/templates/PR.md .github/pull_request_template.md
cp /path/to/Github-templates/templates/README.md README.md- Customize placeholders:
- Replace
<username>/<repo>values in shields - Adapt workflows, branch strategy, and contribution rules
- Keep sections that match your stack and team process
your-project/
.github/
ISSUE_TEMPLATE/
bug_report.md
feature_request.md
pull_request_template.md
README.md
Contributions are welcome.
- Fork the repository
- Create a branch:
feature/your-improvement - Commit using clear messages
- Open a pull request with context and examples
Released under the MIT License. See LICENSE.
